How can we help?

Searching:

0 results found

tenantTemplates/Get (List)

GET /odata/tenantTemplates/

Description

Gets a list of all the Tenant Manifests (templates).

To get the details of a specific Tenant Manifest, refer to tenantTemplates/Get (Specific).

See the following for request and response details ‒

See Also

Request ‒ tenantTemplates/Get (List)

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

 

Example JSON tenantTemplates/Get (List) Request

curl -X GET \

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

-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 (List)

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

Example JSON tenantTemplates/Get (List) Response

Status 200 – OK

{

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

“value”: [

{

“name”: “asdasd”,

“id”: “5c4dc579e3b0cc2734e2f26d”,

“appId”: “3a255621-07ab-4189-8cfe-9e240d47036c”,

“createDate”: “2019-03-30T13:04:03.87Z”,

“createUser”: null,

“updateDate”: “2019-03-30T13:04:03.87Z”,

“updateUser”: null,

“settings”: {

“tenantLogo”: null,

“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

}

},

{

“name”: “עכבר”,

“id”: “5c376637e3b0ca14b87300d0”,

“appId”: “6ed4f60a-9fef-4667-a84c-3e213a44551a”,

“createDate”: “2019-03-30T13:04:03.87Z”,

“createUser”: null,

“updateDate”: “2019-03-30T13:04:03.87Z”,

“updateUser”: null,

“settings”: {

“tenantLogo”: null,

“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

}

}

]

}