> ## 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.

# Get display name request

> Returns a specific display name request by ID



## OpenAPI

````yaml api/legacy/openapi-platform.yaml get /whatsapp_configs/{whatsapp_config_id}/display_name_requests/{id}
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/{id}:
    get:
      tags:
        - WhatsApp Display Names
      summary: Get display name request
      description: Returns a specific display name request by ID
      operationId: getWhatsappDisplayNameRequest
      parameters:
        - name: whatsapp_config_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Display name request details
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/WhatsappDisplayNameRequest'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Display name request 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
    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

````