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

# List legal hold custodians

> Lists the users a hold names, oldest first. Removed custodians are returned alongside active ones, each carrying `removed_at`.



## OpenAPI

````yaml get /v1/legal-holds/{hold_id}/custodians
openapi: 3.1.0
info:
  title: Granola API
  version: 1.0.0
  description: API for accessing meeting data from Granola
servers:
  - url: https://public-api.granola.ai
    description: Production
security: []
paths:
  /v1/legal-holds/{hold_id}/custodians:
    get:
      summary: List legal hold custodians
      description: >-
        Lists the users a hold names, oldest first. Removed custodians are
        returned alongside active ones, each carrying `removed_at`.
      parameters:
        - schema:
            type: string
            pattern: ^lgh_[a-zA-Z0-9]{14}$
            description: The legal hold id
            example: lgh_Abc123XyZ456De
          required: true
          name: hold_id
          in: path
        - schema:
            type: string
            description: The cursor to continue from
            example: eyJjcmVkZW50aWFsfQ==
          required: false
          name: cursor
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 30
            default: 10
            description: Maximum number of custodians to return per page
            example: 10
          required: false
          name: page_size
          in: query
      responses:
        '200':
          description: List of custodians
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListLegalHoldCustodiansOutput'
        '400':
          description: Bad request or invalid cursor
        '401':
          description: Unauthorized - Invalid API key
        '404':
          description: Not found
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ListLegalHoldCustodiansOutput:
      type: object
      properties:
        custodians:
          type: array
          items:
            $ref: '#/components/schemas/LegalHoldCustodian'
        hasMore:
          type: boolean
          description: >-
            Whether there are more custodians to fetch. A page can hold fewer
            than `page_size` custodians and still not be the last one, so page
            on this and `cursor`.
          example: false
        cursor:
          type:
            - string
            - 'null'
          description: The cursor to continue from
          example: null
      required:
        - custodians
        - hasMore
        - cursor
    LegalHoldCustodian:
      type: object
      properties:
        id:
          type: string
          pattern: ^lhc_[a-zA-Z0-9]{14}$
          description: The unique identifier for the custodian entry
          example: lhc_7Yt3nBv8Wq2Lms
        object:
          type: string
          enum:
            - legal_hold_custodian
          description: The type of object
          example: legal_hold_custodian
        user:
          type: object
          properties:
            object:
              type: string
              enum:
                - user
            id:
              type: string
              pattern: ^usr_[a-zA-Z0-9]{14}$
            email:
              type:
                - string
                - 'null'
              format: email
          required:
            - object
            - id
            - email
          description: >-
            The person this custodian entry names. `email` is null once their
            Granola account has been deleted.
          example:
            object: user
            id: usr_9Kd2mPq7Rt4Xyz
            email: person@example.com
        added_at:
          type: string
          format: date-time
          description: When this person was named by the hold
          example: '2026-09-21T10:00:00Z'
        removed_at:
          type:
            - string
            - 'null'
          format: date-time
          description: >-
            When this person was removed from the hold, or null while they are
            named. Removed custodians are always returned, so the record of who
            was held survives.
          example: null
      required:
        - id
        - object
        - user
        - added_at
        - removed_at
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: apiKey

````