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"
    }
  }
]
Use this endpoint to list documents in a collection.

Response shape

Collection reads return an array of entries:
[{ "id": "doc-id", "data": { "any": "fields" } }]

Example: list users

export CRESCENDO_TENANT_ID="tenant-alpha"
export CRESCENDO_API_KEY="YOUR_API_KEY"

curl -sS \
  -H "Authorization: Bearer $CRESCENDO_API_KEY" \
  "https://platform.crescendo.ai/api/v1/provisioning/tenants/$CRESCENDO_TENANT_ID/users"

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