Tenant

Manage tenant settings.

Get all tenant settings.

Retrieve all tenant settings.

SecuritybearerAuth
Responses
200

The complete set of tenant settings.

401

Unauthorized

403

Forbidden

500

unexpected error

503

unexpected error

get/v1/k8s/setting
Response samples
application/json
[
  • {
    }
]

Update a tenant setting.

Use to update tenant settings.

SecuritybearerAuth
Request
Request Body schema: application/json
key
string
value
any
Responses
200

The updated tenant setting.

400

Bad request.

401

Unauthorized

403

Forbidden

404

The specified resource was not found

500

unexpected error

503

unexpected error

put/v1/k8s/setting
Request samples
application/json
{
  • "key": "department.use",
  • "value": true
}
Response samples
application/json
{
  • "msg": "done"
}

Get a tenant setting by key.

Retrieve a specific tenant setting by key.

SecuritybearerAuth
Request
path Parameters
settingKey
required
string
Responses
200

The requested setting.

401

Unauthorized

403

Forbidden

500

unexpected error

503

unexpected error

get/v1/k8s/setting/{settingKey}
Response samples
application/json
true