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

# Get users in an organization

> Returns all user IDs belonging to a specific organization. Requires `auth.organization_users.viewer` permission.



## OpenAPI

````yaml api-reference/auth.yaml post /internal/organization-users
openapi: 3.0.3
info:
  title: auth
  description: >-
    The Auth Service is the single source of truth for all accounts and their
    permissions, managing authentication and access control across the platform.
    It maintains efficiency at scale by issuing access tokens to accounts when
    they log into the platform and providing public keys for other services to
    verify them.
  version: 1.0.0
servers:
  - url: https://auth.platform.arb.inc
security: []
tags:
  - name: /
  - name: authenticate
  - name: internal
  - name: organizations
  - name: sessions
  - name: users
paths:
  /internal/organization-users:
    post:
      tags:
        - internal
      summary: Get users in an organization
      description: >-
        Returns all user IDs belonging to a specific organization. Requires
        `auth.organization_users.viewer` permission.
      operationId: getOrganizationUsers
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - organizationID
              properties:
                organizationID:
                  type: string
                  format: uuid
                  description: The organization ID
                  example: 2720f109-0caf-4c62-af22-5d08c853711c
      responses:
        '200':
          description: Successfully retrieved organization users
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          example: 8f3a4b2c-1d5e-4f6a-9b7c-3e2d1a0b9c8d
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````