> ## Documentation Index
> Fetch the complete documentation index at: https://kapso-1adbad2d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List display name requests

> Returns the display name request history for a WhatsApp configuration (most recent first)



## OpenAPI

````yaml api/legacy/openapi-platform.yaml get /whatsapp_configs/{whatsapp_config_id}/display_name_requests
openapi: 3.0.3
info:
  title: Kapso Platform API
  description: >-
    Build WhatsApp automation into your SaaS. Let your customers connect their
    own WhatsApp Business accounts.
  version: 1.0.0
  contact:
    name: Kapso Support
servers:
  - url: https://app.kapso.ai/api/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /whatsapp_configs/{whatsapp_config_id}/display_name_requests:
    get:
      tags:
        - WhatsApp Display Names
      summary: List display name requests
      description: >-
        Returns the display name request history for a WhatsApp configuration
        (most recent first)
      operationId: listWhatsappDisplayNameRequests
      parameters:
        - name: whatsapp_config_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: page
          in: query
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: per_page
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 20
      responses:
        '200':
          description: A list of display name requests
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/WhatsappDisplayNameRequest'
                  meta:
                    $ref: '#/components/schemas/PaginationMeta'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: WhatsApp configuration not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    WhatsappDisplayNameRequest:
      type: object
      description: WhatsApp display name change request record
      properties:
        id:
          type: string
          format: uuid
          example: 2b0f4a1e-7a58-4a15-b0c9-0d7f1a2b3c4d
        whatsapp_config_id:
          type: string
          format: uuid
          example: 4a5b6c7d-8e9f-0a1b-2c3d-4e5f6a7b8c9d
        requested_display_name:
          type: string
          example: Acme Support
        previous_display_name:
          type: string
          nullable: true
          example: +1 555-123-4567
        status:
          type: string
          description: Current review/application status
          enum:
            - submitted
            - pending_review
            - approved
            - available_without_review
            - deferred
            - declined
            - expired
            - no_review
            - failed
            - applied
            - cancelled
          example: pending_review
        meta_error_code:
          type: integer
          nullable: true
        meta_error_subcode:
          type: integer
          nullable: true
        meta_error_type:
          type: string
          nullable: true
        meta_error_message:
          type: string
          nullable: true
        submitted_at:
          type: string
          format: date-time
        reviewed_at:
          type: string
          format: date-time
          nullable: true
        applied_at:
          type: string
          format: date-time
          nullable: true
    PaginationMeta:
      type: object
      properties:
        page:
          type: integer
          example: 1
        per_page:
          type: integer
          example: 20
        total_pages:
          type: integer
          example: 5
        total_count:
          type: integer
          example: 100
    Error:
      type: object
      properties:
        error:
          type: string
          example: Resource not found
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your project API key

````