Skip to main content
GET
/
api
/
v1
/
provisioning
/
tenants
/
{tenantId}
/
{collection}
List a provisioning collection
curl --request GET \
  --url https://platform.crescendo.ai/api/v1/provisioning/tenants/{tenantId}/{collection} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "user-001",
    "data": {
      "email": "[email protected]",
      "role": "owner"
    }
  },
  {
    "id": "user-002",
    "data": {
      "email": "[email protected]",
      "role": "viewer"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

tenantId
string
required

Tenant identifier.

collection
string
required

Collection name under the tenant (for example: users, bots, jobs).

Response

Collection entries

id
string
required
data
object
required