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

# List Account Contacts

> Account-side contacts assigned to an organization.

Account-side contacts assigned to an organization.


## OpenAPI

````yaml GET /orgs/{org_id}/contacts
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: alarms
    description: Metric series and threshold alarms
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: channels
    description: Delivery channels alarms notify through
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/contacts:
    get:
      tags:
        - orgs
      description: Account-side contacts assigned to an organization.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Contacts for the organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListOrgContactsResBody'
      security:
        - bearer_auth: []
components:
  schemas:
    ListOrgContactsResBody:
      type: object
      required:
        - contacts
      properties:
        contacts:
          type: array
          items:
            $ref: '#/components/schemas/OrgContact'
    OrgContact:
      type: object
      required:
        - id
        - type
        - name
        - channels
      properties:
        channels:
          type: array
          items:
            $ref: '#/components/schemas/OrgContactChannel'
          description: Ways to reach this contact.
        id:
          type: string
          description: Unique contact identifier.
        name:
          type: string
          description: Display name (e.g. "Jane Doe").
        photo_url:
          type:
            - string
            - 'null'
          description: Optional profile photo URL.
        title:
          type:
            - string
            - 'null'
          description: Optional job title (e.g. "Senior AI Solutions Architect").
        type:
          $ref: '#/components/schemas/OrgContactType'
          description: Role this contact plays for the org.
    OrgContactChannel:
      type: object
      required:
        - kind
        - value
      properties:
        kind:
          $ref: '#/components/schemas/OrgContactChannelKind'
        label:
          type:
            - string
            - 'null'
          description: Optional display label like "Mobile" or "Work".
        primary:
          type: boolean
          description: Marks the preferred channel of this kind when multiple are listed.
        value:
          type: string
          description: >-
            Channel-specific identifier: email address, E.164 phone number,
            slack

            handle, calendly URL, etc. Format is enforced by the channel kind.
    OrgContactType:
      type: string
      description: >-
        Role a contact plays for the org. Free-form on the wire/DB so new roles

        can be introduced without a migration; unknown values fall back to
        `Other`.
      enum:
        - aisa
        - account_executive
        - account_manager
        - csm
        - other
    OrgContactChannelKind:
      type: string
      enum:
        - email
        - phone
        - whatsapp
        - telegram
        - slack
        - calendly
        - linkedin
        - signal
        - other
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````