Skip to main content

Get Child Tenant Info

GET /v1/auth/info/:id

Retrieves account and tenant details for a specific child tenant. Designed for multi-tenant scenarios where a parent organization manages multiple child tenants. Returns account role, type, number, and organizational settings like country and currency preferences.

Response Example

{
"accountRole": {
"name": "owner",
"title": "Owner"
},
"msp": true,
"name": "ChildTenant",
"number": "*********",
"type": "customer",
"settings": {
"country": {
"code": "NO",
"country": "Norway"
},
"currency": {
"code": "NOK",
"title": "Norwegian kroner"
}
}
}