Skip to main content

Fetching all Tenants

To fetch all tenants, you must send a GET request to the following endpoint in the API:

https://api.platform.illow.io/open-api/v1/company/tenants
info

Don't forget to include your Access Key in the X-API-Key header of all your requests.

Response Body

Format: JSON

PropertyTypeDescription
tenantsArray<tenants>An array of tenants created.

Examples

{
"tenants": [
{
"tenantId": "8374978f-51d8-421c-8f6e-da3734db7226",
"loginUrl": "https://platform.illow.io/#/8374978f-51d8-421c-8f6e-da3734db7226/sign-in",
"tenantName": "Big Telco, Inc.",
"sso": {
"saml": {
"claims": {
"mail": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
"name": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
},
"metadataUrl": "https://bigtelco.com/samlp/metadata?connection=illow",
}
}
}
]
}