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

# Get organization onboarding

> Returns the onboarding checklist for an organization, tracking which onboarding steps have been completed. Service-account callers with organization read scope can read any organization's onboarding. User and API-key callers can only read onboarding for their active organization context.



## OpenAPI

````yaml /api-reference/organizations.openapi.json get /v1/organizations/{org_id}/onboarding
openapi: 3.1.0
info:
  title: organizations
  description: ''
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.anthid.com
    description: Production
security: []
tags:
  - name: Organizations
    description: Organizations API
paths:
  /v1/organizations/{org_id}/onboarding:
    get:
      tags:
        - Organizations
      summary: Get organization onboarding
      description: >-
        Returns the onboarding checklist for an organization, tracking which
        onboarding steps have been completed. Service-account callers with
        organization read scope can read any organization's onboarding. User and
        API-key callers can only read onboarding for their active organization
        context.
      operationId: getOrganizationOnboarding
      parameters:
        - name: org_id
          in: path
          description: Internal organization id
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Organization onboarding checklist found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationOnboarding'
        '400':
          description: Organization id is invalid
          content:
            text/plain:
              schema:
                type: string
        '401':
          description: Missing or invalid authentication credentials
          content:
            text/plain:
              schema:
                type: string
        '403':
          description: Caller cannot read this organization's onboarding
          content:
            text/plain:
              schema:
                type: string
        '404':
          description: Organization onboarding was not found
          content:
            text/plain:
              schema:
                type: string
        '429':
          description: Caller exceeded the request rate limit
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: Unexpected server error while reading the organization onboarding
          content:
            text/plain:
              schema:
                type: string
      security:
        - bearerAuth: []
        - clientCredentials: []
        - apiKeyAuth: []
components:
  schemas:
    OrganizationOnboarding:
      type: object
      required:
        - organization_id
        - created_at
        - updated_at
      properties:
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
        configured_controls_at:
          type:
            - string
            - 'null'
          format: date-time
        connected_broker_at:
          type:
            - string
            - 'null'
          format: date-time
        created_api_key_at:
          type:
            - string
            - 'null'
          format: date-time
        created_at:
          type: string
          format: date-time
        organization_id:
          type: string
          format: uuid
        submitted_first_order_at:
          type:
            - string
            - 'null'
          format: date-time
        updated_at:
          type: string
          format: date-time
        viewed_docs_at:
          type:
            - string
            - 'null'
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    clientCredentials:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Machine bearer token minted via the client_credentials grant.
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````