GET
/
tenants
/
{tenant_id}
/
users
curl --request GET \
  --url https://api.courier.com/tenants/{tenant_id}/users \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "user_id": "<string>",
      "type": "user",
      "tenant_id": "<string>",
      "profile": {}
    }
  ],
  "has_more": true,
  "url": "<string>",
  "next_url": "<string>",
  "cursor": "<string>",
  "type": "list"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tenant_id
string
required

Id of the tenant for user membership.

Query Parameters

limit
integer | null

The number of accounts to return (defaults to 20, maximum value of 100)

cursor
string | null

Continue the pagination with the next cursor

Response

200
application/json

The response is of type object.