How can we help?

Searching:

0 results found

Tenants/Get (Specific)

GET /odata/Tenants/[tenantId]

Description

Gets the details of a specific Tenant, as specified by the Tenant’s ID. This Tenant ID is returned in the response of the Tenants/Post.

To get the details of all the Tenants of the Tenants allowed to the logged‑in user, see Tenants/Get (List).

See the following for request and response details ‒

See Also

Request ‒ Tenants/Get (Specific)

Property Type Description Mandatory
tenantId String This is the unique identifier (tenantId) that is automatically assigned by Axonize when a Tenant is created. This tenantId is returned in the response of the Tenants/Post. Y

Example JSON Tenants/Get (Specific) Request

curl -X GET \

  https://api.stg.axonize.com/odata/tenants/5851631d4e41925b98f01234 \

  -H ‘Authorization: Token’ \

  -H ‘appId: be517433-c4b8-4788-9258-1ba220435d63’

Response ‒ Tenants/Get (Specific)

For the requested Tenant, the response provides the properties in Tenants/Post.

Example JSON Tenants/Get (Specific) Response

Status 200 ‒ OK

{

    “@odata.context”: “https://stg-axonizeapi-axonize.stg-ase-axonize.p.azurewebsites.net/odata/$metadata#Tenants/$entity”,

    “region”: null,

    “active”: false,

    “appId”: “801A048A-9F23-429F-BF0D-B6D35B22771E”,

    “subdomain”: “tenant subdomain”,

    “logo”: null,

    “color”: “#000000”,

    “colorDark”: “#FFFFFF”,

    “reportColor”: “#FFFFFF”,

    “cultureInfo”: null,

    “reportPrefix”: null,

    “timezone”:”Asia/Jerusalem”
    “parentId”: null,

    “name”: “tenant name”,

    “id”: “5851631d4e41925b98f01234”,

    “createDate”: “0001-01-01T00:00:00Z”,

    “createUser”: null,

    “updateDate”: “0001-01-01T00:00:00Z”,

    “updateUser”: null,

    “passwordPolicy”: null,

    “security”: null,

    “additionalProperties”: [],

    “ancestors”: []

    “urls”: []

}