curl --request POST \
--url http://localhost:3000/v2/TenantListTenants \
--header 'Content-Type: application/json' \
--header 'X-Bunker-Token: <api-key>' \
--data '
{
"offset": 0,
"limit": 10,
"request_metadata": {}
}
'{
"status": "ok",
"rows": [
{
"tenantid": 123,
"tenantname": "<string>",
"tenantorg": "<string>"
}
]
}Retrieves a list of all tenants in the system
curl --request POST \
--url http://localhost:3000/v2/TenantListTenants \
--header 'Content-Type: application/json' \
--header 'X-Bunker-Token: <api-key>' \
--data '
{
"offset": 0,
"limit": 10,
"request_metadata": {}
}
'{
"status": "ok",
"rows": [
{
"tenantid": 123,
"tenantname": "<string>",
"tenantorg": "<string>"
}
]
}API token for authentication