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

# List termination reasons

> The organization's own reasons plus the shared predefined ones. Requires the `termination-reasons:read` scope.



## OpenAPI

````yaml /openapi.json get /termination-reasons
openapi: 3.1.1
info:
  title: A-Char API
  version: 1.0.0
  description: 'Authenticate with `Authorization: Bearer <api key>`.'
servers:
  - url: https://a-char.com/api/v1
security:
  - bearerAuth: []
paths:
  /termination-reasons:
    get:
      tags:
        - Termination reasons
      summary: List termination reasons
      description: >-
        The organization's own reasons plus the shared predefined ones. Requires
        the `termination-reasons:read` scope.
      operationId: terminationReasons.list
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    title:
                      type: string
                    type:
                      enum:
                        - custom
                        - predefined
                      type: string
                  required:
                    - id
                    - title
                    - type
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````