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

# List users in your organization

> Gets a simple list of users who are in the same organization.



## OpenAPI

````yaml /api-reference/api.yaml post /organization/users/list
openapi: 3.0.3
info:
  title: api
  description: >-
    The API service is the secure public gateway to our platform, letting people
    access features without touching our private internal APIs. It authenticates
    clients with its own internal tokens and then routes their requests to the
    right internal services behind the scenes.
  version: 1.0.0
servers:
  - url: https://api.platform.arb.inc
security: []
tags:
  - name: cases
  - name: docket
  - name: evidence
  - name: filings
  - name: organization
  - name: participants
  - name: schemas
  - name: service-of-notice
paths:
  /organization/users/list:
    post:
      tags:
        - organization
      summary: List users in your organization
      description: Gets a simple list of users who are in the same organization.
      operationId: listOrganizationUsers
      responses:
        '200':
          description: Users successfully listed.
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    description: All users in the organization.
                    items:
                      type: object
                      properties:
                        joined:
                          type: string
                          format: date-time
                          description: When the user joined the organization.
                          example: '2025-09-18T14:23:45Z'
                        userID:
                          type: string
                          description: The user's unique ID.
                          example: a4b1c2d3-4567-8901-2345-6789abcdef01
                        invitedBy:
                          type: string
                          description: The user ID of the inviter.
                          example: f0e9d8c7-6543-2109-8765-4321abcdef98
                        email:
                          type: string
                          description: The email associated with the users account
                          example: al@example.inc
                example:
                  users:
                    - joined: '2025-09-18T14:23:45Z'
                      userID: a4b1c2d3-4567-8901-2345-6789abcdef01
                      invitedBy: f0e9d8c7-6543-2109-8765-4321abcdef98
                      email: eli@example.com
                    - joined: '2025-07-02T09:10:11Z'
                      userID: b7c8d9e0-1234-5678-9abc-def012345678
                      invitedBy: a4b1c2d3-4567-8901-2345-6789abcdef01
                      email: al@example.com
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````