How can we help?

Searching:

0 results found

tenantTemplates/Get (Specific)

GET /odata/tenantTemplates/[tenantTemplateId]

Description

Gets the details of a specific Tenant Manifest (template), as specified by the Tenant Manifest’s ID. This ID is returned in the response of the tenantTemplates/Post.

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

See the following for request and response details ‒

See Also

Request ‒ tenantTemplates/Get (Specific)

Property Type Description Mandatory
appId String A unique identifier that is automatically generated by Axonize for this Application.

This property is used to link between other entities (such as Users and Devices) and this Application.

Y
id String A unique identifier for this Tenant Manifest (template) that is automatically generated. Please note that this ID is only intended for internal use by Axonize. Y

 

Example JSON tenantTemplates/Get (Specific) Request

curl -X GET \

  https://api.dev.axonize.com/odata/tenantTemplates/5cc073c2e3b0cb26c4db5a0f \

  -H ‘Accept: application/json, text/plain, */*’ \

  -H ‘Content-Type: application/json’ \

  -H ‘appId: 1aaf017c-b987-4f53-94d6-ad9afb8e4767’ \

  -H ‘cache-control: no-cache’ \

Response ‒ tenantTemplates/Get (Specific)

For the requested Tenant Manifest (template), the response provides the properties in tenantTemplates/Post.

Example JSON tenantTemplates/Get (Specific) Response

Status 200 – OK

{

    “@odata.context”: “https://10.9.0.103/odata/$metadata#TenantTemplates/$entity”,

    “name”: “tenantTemplate1”,

    “id”: “5cc073c2e3b0cb26c4db5a0f”,

    “appId”: “1aaf017c-b987-4f53-94d6-ad9afb8e4767”,

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

    “createUser”: null,

    “updateDate”: “2019-04-24T14:34:48.04Z”,

    “updateUser”: null,

    “settings”: {

        “tenantLogo”: “Logo”,

        “tenantDarkLogo”: null,

        “color”: null,

        “cultureInfo”: null,

        “reportPrefix”: null,

        “reportColor”: null,

        “timezone”: null,

        “colorDark”: null,

        “favicon”: null,

        “loginLogo”: null,

        “title”: null,

        “cssExternalFile”: null,

        “hideLegacyDashboard”: null,

        “azureADConnect”: null,

        “passwordPolicy”: null,

        “security”: null,

        “inviteEmail”: null,

        “resetPasswordEmail”: null,

        “forgotPasswordEmail”: null,

        “reportEmail”: null

    }

}