> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crescendo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List a provisioning collection

> Reads a collection and returns an array of `{ id, data }` objects.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/provisioning/tenants/{tenantId}/{collection}
openapi: 3.1.0
info:
  title: Crescendo Platform API
  version: 1.6.0
  description: Public HTTP API for the Crescendo platform.
servers:
  - url: https://platform.crescendo.ai
security:
  - bearerAuth: []
  - bearerTokenQuery: []
tags:
  - name: Service
    description: Service metadata and health.
  - name: Provisioning
    description: Tenant-scoped provisioning resources.
  - name: Reporting
    description: Reporting-friendly exports (cursor pagination).
  - name: VOC
    description: Upload recordings for VOC processing.
  - name: MCP
    description: Model Context Protocol (MCP) endpoints.
paths:
  /api/v1/provisioning/tenants/{tenantId}/{collection}:
    get:
      tags:
        - Provisioning
      summary: List a provisioning collection
      description: Reads a collection and returns an array of `{ id, data }` objects.
      operationId: listProvisioningCollection
      parameters:
        - $ref: '#/components/parameters/tenantId'
        - $ref: '#/components/parameters/collection'
      responses:
        '200':
          description: Collection entries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProvisioningCollectionResponse'
              examples:
                example:
                  value:
                    - id: user-001
                      data:
                        email: owner@alpha.test
                        role: owner
                    - id: user-002
                      data:
                        email: viewer@alpha.test
                        role: viewer
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '403':
          $ref: '#/components/responses/PermissionDenied'
components:
  parameters:
    tenantId:
      name: tenantId
      in: path
      required: true
      description: Tenant identifier.
      schema:
        type: string
    collection:
      name: collection
      in: path
      required: true
      description: 'Collection name under the tenant (for example: `users`, `bots`, `jobs`).'
      schema:
        type: string
  schemas:
    ProvisioningCollectionResponse:
      type: array
      items:
        $ref: '#/components/schemas/ProvisioningCollectionEntry'
    ProvisioningCollectionEntry:
      type: object
      properties:
        id:
          type: string
        data:
          type: object
          additionalProperties: true
      required:
        - id
        - data
    ErrorResponse:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            example:
              value:
                code: BadRequest
                message: Invalid request parameters
    Unauthenticated:
      description: Unauthenticated
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            example:
              value:
                code: Unauthenticated
                message: Authorization header with Bearer token is required
    PermissionDenied:
      description: Permission denied
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            example:
              value:
                code: PermissionDenied
                message: API key does not allow this operation
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
    bearerTokenQuery:
      type: apiKey
      in: query
      name: bearer_token
      description: >-
        Alternative to the Authorization header. Prefer the Authorization header
        whenever possible.

````