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

# Get section/entity types for an organization

> Returns the built-in entity types (Contact, Application, Conversation), custom entity types defined via DynamicProperties, and an id↔type index so clients can render link-target labels. Access restricted to org members; SuperAdmin can read any org.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/organizations/section-types/{id}
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/organizations/section-types/{id}:
    get:
      tags:
        - Organizations
      summary: Get section/entity types for an organization
      description: >-
        Returns the built-in entity types (Contact, Application, Conversation),
        custom entity types defined via DynamicProperties, and an id↔type index
        so clients can render link-target labels. Access restricted to org
        members; SuperAdmin can read any org.
      operationId: get_organizations_section_types_id
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Section types returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgSectionTypesResponse'
        '403':
          description: 'Unauthorized: Access to different organization denied'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
        '500':
          description: Failed to fetch section types
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    OrgSectionTypesResponse:
      type: object
      properties:
        builtIn:
          type: array
          items:
            type: string
        custom:
          type: array
          items:
            type: string
        all:
          type: array
          items:
            type: string
        configs:
          type: array
          items:
            $ref: '#/components/schemas/OrgSectionTypeConfigEntry'
      additionalProperties: true
      example:
        builtIn:
          - Contact
          - Application
          - Conversation
        custom:
          - Vehicle
        all:
          - Contact
          - Application
          - Conversation
          - Vehicle
        configs:
          - _id: 5f7b1c2e8a1d4e0012c3b500
            type: Contact
          - _id: 5f7b1c2e8a1d4e0012c3b501
            type: Vehicle
    OrganizationErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: string
      additionalProperties: true
      example:
        error: Organization not found
        details: No organization exists with the provided id
    OrgSectionTypeConfigEntry:
      type: object
      properties:
        _id:
          type: string
        type:
          type: string
      required:
        - _id
        - type
      additionalProperties: true
      example:
        _id: 5f7b1c2e8a1d4e0012c3b500
        type: Contact
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````