Skip to main content
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

Authorization
string
header
required

Send as Authorization: Bearer <your api key>

Query Parameters

limit
integer
default:50

Maximum number of tenants to return (default 50, max 200).

Required range: 1 <= x <= 200
cursor
string

Opaque cursor from a previous response for pagination.

Response

OK

items
object[]
required
nextCursor
string | null