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

# List organization users

> Returns a paginated list of users (organization members) who have access to at least one of the workspaces accessible by the API key. Use the `organizationMembershipId` to create sequences. Use the `workspaceIds` query parameter to narrow results to a subset of those workspaces.



## OpenAPI

````yaml https://api-public.skipcall.app/docs-json get /v1/users
openapi: 3.0.0
info:
  title: Skipcall Public API
  description: >-
    ## Overview

    The Skipcall Public API allows you to integrate Skipcall with your
    applications, CRM, or automation tools.


    ## Plan Requirements

    API access is available for **STARTER**, **INTERMÉDIAIRE** and **EXPERT**
    plans.


    ## Authentication

    All API requests require authentication using an API Key. Include your API
    key in the `Authorization` header:


    ```

    Authorization: Bearer sk_live_your_api_key_here

    ```


    You can generate API keys from your Skipcall dashboard under Settings > API
    Keys.


    ## Rate Limiting

    Rate limits vary by subscription plan:


    | Plan | Rate Limit |

    |------|------------|

    | STARTER | 100 requests/minute |

    | INTERMÉDIAIRE | 100 requests/minute |

    | EXPERT | 1000 requests/minute |


    Rate limit headers are included in every response:

    - `X-RateLimit-Limit`: Maximum requests per minute for your plan

    - `X-RateLimit-Remaining`: Remaining requests in the current window

    - `X-RateLimit-Reset`: Unix timestamp when the rate limit resets


    ## Errors

    The API uses standard HTTP status codes:

    - `200` - Success

    - `400` - Bad Request (invalid parameters)

    - `401` - Unauthorized (invalid or missing API key)

    - `403` - Forbidden (subscription required or plan not eligible)

    - `404` - Not Found

    - `429` - Too Many Requests (rate limit exceeded)

    - `500` - Internal Server Error


    ### Subscription Errors

    | Code | Description |

    |------|-------------|

    | `SUBSCRIPTION_REQUIRED` | An active subscription is required to access the
    API |

    | `PLAN_NOT_ELIGIBLE` | API access requires STARTER, INTERMÉDIAIRE or EXPERT
    plan |
  version: '1.0'
  contact: {}
servers:
  - url: https://api-public.skipcall.app
    description: Production
security: []
tags:
  - name: Contacts
    description: Manage your contacts
  - name: Calls
    description: Access call history and recordings
paths:
  /v1/users:
    get:
      tags:
        - Users
      summary: List organization users
      description: >-
        Returns a paginated list of users (organization members) who have access
        to at least one of the workspaces accessible by the API key. Use the
        `organizationMembershipId` to create sequences. Use the `workspaceIds`
        query parameter to narrow results to a subset of those workspaces.
      operationId: UserController_list
      parameters:
        - name: workspaceIds
          required: false
          in: query
          description: >-
            Workspace IDs to narrow down results. Must be a subset of the
            workspaces accessible by the API key. Omit to return data from every
            workspace in scope. Accepts either a comma-separated string
            (`?workspaceIds=uuid1,uuid2`) — the documented format — or repeated
            array params (`?workspaceIds[]=uuid1&workspaceIds[]=uuid2`).
          schema:
            example: >-
              550e8400-e29b-41d4-a716-446655440000,6ba7b810-9dad-11d1-80b4-00c04fd430c8
            type: string
        - name: page
          required: false
          in: query
          description: Page number (1-indexed)
          schema:
            minimum: 1
            default: 1
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Number of items per page
          schema:
            minimum: 1
            maximum: 100
            default: 50
            example: 50
            type: number
      responses:
        '200':
          description: Paginated list of users
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedUsersDto'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        example: UNAUTHORIZED
                      message:
                        type: string
                        example: Invalid or revoked API key
                      status:
                        type: number
                        example: 401
        '403':
          description: One or more requested workspaceIds are outside the API key scope
      security:
        - ApiKey: []
components:
  schemas:
    PaginatedUsersDto:
      type: object
      properties:
        data:
          description: Array of users
          type: array
          items:
            $ref: '#/components/schemas/UserDto'
        total:
          type: number
          example: 100
        page:
          type: number
          example: 1
        limit:
          type: number
          example: 10
        totalPages:
          type: number
          example: 10
      required:
        - data
        - total
        - page
        - limit
        - totalPages
    UserDto:
      type: object
      properties:
        id:
          type: string
          example: 123e4567-e89b-12d3-a456-426614174000
          description: Unique identifier of the user
        organizationMembershipId:
          type: string
          example: 987e6543-e21b-45d3-b678-426614174001
          description: >-
            Unique identifier of the organization membership. Use this ID when
            creating sequences.
        firstName:
          type: object
          example: John
          description: First name of the user
          nullable: true
        lastName:
          type: object
          example: Doe
          description: Last name of the user
          nullable: true
        email:
          type: string
          example: john.doe@example.com
          description: Email address of the user
        role:
          type: string
          example: MEMBER
          description: Role of the user in the organization
          enum:
            - ADMIN
            - MEMBER
            - MANAGER
        status:
          type: string
          example: ACTIVE
          description: Status of the user membership in the organization
          enum:
            - ACTIVE
            - INACTIVE
            - PENDING
      required:
        - id
        - organizationMembershipId
        - email
        - role
        - status
  securitySchemes:
    ApiKey:
      scheme: bearer
      bearerFormat: API Key
      type: http
      description: Enter your API Key (sk_live_xxx or sk_test_xxx)

````