Retrieves a tenant.

Method

GET /tenant/{id}

Parameters

Path Parameters

Name Description
id The id of the tenant to be retrieved.

Result

A JSON object with the following properties:

Name Value Description
id String The id of the tenant.
name String The name of the tenant.

Response Codes

Code Media type Description
200 application/json Request successful.
404 application/json Tenant with given id does not exist. See the Introduction for the error response format.

Example

Request

GET /tenant/tenantOne

Response

Status 200.

  1. {
  2. "id":"tenantOne",
  3. "name":"Tenant One"
  4. }

原文: https://docs.camunda.org/manual/7.9/reference/rest/tenant/get/