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

# Get a record set

> Returns a record set's manifest and upload progress. Cross-tenant access returns 404, never 403.



## OpenAPI

````yaml /openapi.json get /record-sets/{record_set_id}
openapi: 3.1.0
info:
  title: GetDialed Flows API
  version: 0.1.0
servers:
  - url: https://api.getdialed.ai/flows
    description: Production
security: []
paths:
  /record-sets/{record_set_id}:
    get:
      tags:
        - record-sets
      summary: Get a record set
      description: >-
        Returns a record set's manifest and upload progress. Cross-tenant access
        returns 404, never 403.
      operationId: get_record_set_record_sets__record_set_id__get
      parameters:
        - name: record_set_id
          in: path
          required: true
          schema:
            type: string
            title: Record Set Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordSetResponse'
        '401':
          description: Missing or invalid authentication
          content:
            application/json:
              example:
                detail: Authentication required
        '404':
          description: Not found — also returned on cross-tenant access (never 403)
          content:
            application/json:
              example:
                detail: Record set not found
        '422':
          description: Validation error (see body for field details)
          content:
            application/json:
              example:
                detail: Validation error
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    RecordSetResponse:
      properties:
        id:
          type: string
          title: Id
        status:
          type: string
          title: Status
        chunk_size:
          type: integer
          title: Chunk Size
        received_count:
          type: integer
          title: Received Count
        chunk_count:
          type: integer
          title: Chunk Count
        expected_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Expected Count
        content_hash:
          anyOf:
            - type: string
            - type: 'null'
          title: Content Hash
        batch_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Batch Id
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        sealed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Sealed At
        consumed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Consumed At
        staging_expires_at:
          type: string
          format: date-time
          title: Staging Expires At
      type: object
      required:
        - id
        - status
        - chunk_size
        - received_count
        - chunk_count
        - expected_count
        - content_hash
        - batch_id
        - metadata
        - created_at
        - updated_at
        - sealed_at
        - consumed_at
        - staging_expires_at
      title: RecordSetResponse
      description: >-
        A record set's manifest and current progress.


        `status` moves `open` -> `sealed` -> `consumed`: `open` accepts chunks,

        `sealed` is complete and ready to trigger, and `consumed` means a
        trigger

        has claimed it (each record set is used exactly once). `received_count`
        and

        `chunk_count` track what has arrived so far, `content_hash` identifies
        the

        sealed contents, `batch_id` points at the batch that consumed it, and

        `staging_expires_at` is when an untriggered record set and its staged

        records are reclaimed.
      example:
        chunk_count: 100
        chunk_size: 10000
        content_hash: 9f2c4e1b7a35d80c6e4f1a92b3c7d5e08f6a1b2c3d4e5f60718293a4b5c6d7e8
        created_at: '2026-07-27T12:00:00Z'
        expected_count: 1000000
        id: rs_0123456789abcdef
        metadata:
          campaign: spring-2026
        received_count: 1000000
        sealed_at: '2026-07-27T12:04:31Z'
        staging_expires_at: '2026-08-03T12:00:00Z'
        status: sealed
        updated_at: '2026-07-27T12:04:31Z'
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````