Get tenant list
curl --request GET \
--url https://api.longwavehq.com/beta/tenants \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"displayName": "<string>",
"externalTenantId": "<string>",
"status": "<string>",
"onboardedAt": "2023-11-07T05:31:56Z"
}
],
"nextCursor": "<string>"
}Endpoints
Get tenant list
List every tenant your API key can access. Use this for directory views and to discover tenant ids; it does not return full reporting fields.
GET
/
beta
/
tenants
Get tenant list
curl --request GET \
--url https://api.longwavehq.com/beta/tenants \
--header 'Authorization: Bearer <token>'{
"items": [
{
"id": "<string>",
"displayName": "<string>",
"externalTenantId": "<string>",
"status": "<string>",
"onboardedAt": "2023-11-07T05:31:56Z"
}
],
"nextCursor": "<string>"
}Authorizations
Send as Authorization: Bearer <your api key>
Query Parameters
Maximum number of tenants to return (default 50, max 200).
Required range:
1 <= x <= 200Opaque cursor from a previous response for pagination.
⌘I

