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

# Get the org's HITL approval-UX lines (resolved)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/hitl/approval-messages
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/hitl/approval-messages:
    get:
      tags:
        - hitl
      summary: Get the org's HITL approval-UX lines (resolved)
      operationId: get_approval_messages_v1_hitl_approval_messages_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApprovalMessagesResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ApprovalMessagesResponse:
      properties:
        holding_line:
          type: string
          title: Holding Line
        waiting_reply:
          type: string
          title: Waiting Reply
      type: object
      required:
        - holding_line
        - waiting_reply
      title: ApprovalMessagesResponse
      description: >-
        The org's two HITL approval-UX lines, RESOLVED (org value or code
        default).


        Both are always concrete strings: when the org hasn't configured a line,
        the resolved

        code default is surfaced so the UI shows exactly what an end-user will
        see. To revert a

        line to its default, PUT ``null`` for that field.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````