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

# users.list

> Lists team members with offset-based pagination. Default `limit` is 100, max 1000.

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

<Tip>
  **Auth:** Bearer access token from [oauth.token](/enterprise/v1/oauth.token).

  **Pagination:** Offset-based. `limit` defaults to 100, max 1000. `offset` defaults to 0. For SailPoint Account Aggregation use `limit=1000` and increment `offset` until you receive fewer than `limit` records.

  **Response shape:** `users[]` plus `total` / `limit` / `offset` echoes for pager bookkeeping.

  **Field availability:** `userName` / `firstName` / `lastName` are populated from the underlying personal user account; they may be empty for accounts created via API without those fields.
</Tip>


## OpenAPI

````yaml GET /api/user/manage/v1/users
openapi: 3.1.0
info:
  title: Manus Team User Management OpenAPI v1
  description: >-
    API for enterprise tenant administrators to manage team members
    programmatically (SailPoint, Okta, custom IDP integrations). Two surfaces:
    (1) credential management RPCs at `/team.v1.TeamManagementService/*` use a
    session token; (2) REST endpoints under `/api/user/manage/v1/*` use an OAuth
    2.0 Client Credentials access token issued by the credentials. v2 of this
    API ([User Management v2](/enterprise/v2/user-management-overview))
    consolidates everything behind `X-API-Key` — prefer it for new integrations.
  version: 1.0.0
servers:
  - url: https://api.manus.im
security: []
paths:
  /api/user/manage/v1/users:
    get:
      summary: List Users
      description: >-
        Lists team members with offset-based pagination. Default `limit` is 100,
        max 1000.
      operationId: team.v1.ListUsers
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            format: int32
            description: Records to return (1–1000).
            default: 100
            example: 100
        - name: offset
          in: query
          schema:
            type: integer
            format: int32
            description: Records to skip.
            default: 0
            example: 0
      responses:
        '200':
          description: Users retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      $ref: '#/components/schemas/User'
                  total:
                    type: integer
                    description: Total number of team members.
                  limit:
                    type: integer
                  offset:
                    type: integer
        '401':
          description: '`UNAUTHORIZED` — Bearer token missing, invalid, or expired.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAccessAuth: []
components:
  schemas:
    User:
      type: object
      description: A team member.
      properties:
        email:
          type: string
          format: email
          example: user@example.com
        userName:
          type: string
          example: Jane Doe
        firstName:
          type: string
          example: Jane
        lastName:
          type: string
          example: Doe
        status:
          type: string
          enum:
            - active
            - inactive
          example: active
        role:
          type: string
          enum:
            - owner
            - super_admin
            - admin
            - member
            - free_tier_member
          description: >-
            `owner` is read-only — it cannot be set or changed via API.
            `free_tier_member` is a non-paying member that does not consume a
            Stripe seat.
          example: member
    ErrorResponse:
      type: object
      description: Standard REST error format.
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: >-
                Machine-readable error code: `INVALID_REQUEST`,
                `INVALID_GRANT_TYPE`, `UNAUTHORIZED`, `INVALID_CLIENT`,
                `USER_NOT_FOUND`, `USER_ALREADY_EXISTS`, or `INTERNAL_ERROR`.
            message:
              type: string
  securitySchemes:
    BearerAccessAuth:
      type: http
      scheme: bearer
      description: >-
        OAuth 2.0 Client Credentials access token issued by
        [/api/user/manage/v1/oauth/token](/enterprise/v1/oauth.token). Lifetime
        is 1 hour.

````