> ## 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.detail

> Looks up a single team member by email.

<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).

  **URL encoding:** The `email` path parameter must be URL-encoded — `john.doe@example.com` becomes `john.doe%40example.com`.

  **404 vs other errors:** Returns `404 USER_NOT_FOUND` only when the email does not match any team member. Other failures return `500 INTERNAL_ERROR` — retry with backoff.
</Tip>


## OpenAPI

````yaml GET /api/user/manage/v1/users/{email}
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/{email}:
    get:
      summary: Get User
      description: Looks up a single team member by email.
      operationId: team.v1.GetUser
      parameters:
        - name: email
          in: path
          required: true
          schema:
            type: string
            format: email
            example: user@example.com
          description: URL-encoded email address of the team member.
      responses:
        '200':
          description: User retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '404':
          description: '`USER_NOT_FOUND` — no team member with this email.'
          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.

````