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

# Get Remote User By Id

> Returns a RemoteUser object with the given id.



## OpenAPI

````yaml get /api/ats/v1/remote-users/{id}
openapi: 3.1.0
info:
  title: Bindbee APIs
  version: 0.1.0
servers:
  - url: https://api.bindbee.dev
  - url: https://api-eu.bindbee.dev
security: []
paths:
  /api/ats/v1/remote-users/{id}:
    get:
      tags:
        - Remote User
      summary: Get Remote User By Id
      description: Returns a RemoteUser object with the given id.
      operationId: get_remote_user_by_id_api_ats_v1_remote_users__id__get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Id
        - name: include_raw_data
          in: query
          required: false
          schema:
            type: boolean
            description: Include raw data in the response
            examples:
              - false
            default: false
            title: Include Raw Data
          description: Include raw data in the response
        - name: include_custom_fields
          in: query
          required: false
          schema:
            type: boolean
            description: Whether to include custom fields in the response.
            examples:
              - false
            default: false
            title: Include Custom Fields
          description: Whether to include custom fields in the response.
        - name: x-connector-token
          in: header
          required: true
          schema:
            type: string
            title: X-Connector-Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AtsRemoteUser'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    AtsRemoteUser:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          examples:
            - 018b18ef-c487-703c-afd9-0ca478ccd9d6
        remote_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Remote Id
          description: The third-party API ID of the matching object.
          examples:
            - '123321'
        modified_at:
          type: string
          title: Modified At
          description: This is the datetime that this object was last updated by Bindbee
          examples:
            - '2021-10-16T00:00:00Z'
        raw_data:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Raw Data
          description: This is the Raw data
          examples:
            - key_1: Platform dependent data 1
              key_2: Platform dependent data 2
        custom_fields:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Custom Fields
          description: The custom fields related to the model
          examples:
            - category_group: REG
              disability_type: ASBERG
              hire_date: '1991-03-16T00:00:00'
              hire_source: REFER
              nationality: USA
              original_hire_date: '1991-03-16T00:00:00'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
          title: First Name
          description: The first name of the user.
          examples:
            - John
        last_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Name
          description: The last name of the user.
          examples:
            - Doe
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
          description: The email address of the user.
          examples:
            - john@doe.com
        disabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Disabled
          description: Indicates whether the user's account is disabled.
          examples:
            - false
        remote_created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Remote Created At
          description: >-
            The ISO date string when the user profile was created in the remote
            system.
          examples:
            - '2021-01-01T00:00:00Z'
        access_role:
          anyOf:
            - type: string
            - type: 'null'
          enum:
            - ADMIN
            - SUPER_ADMIN
            - TEAM_MEMBER
            - LIMITED_TEAM_MEMBER
            - INTERVIEWER
            - RECRUITER
            - '-'
          title: Access Role
          description: >-
            The role of the user defining their level of access. If the value is
            not one of the defined enum values, the original value passed
            through will be returned.
          examples:
            - ADMIN
      type: object
      required:
        - id
        - remote_id
        - modified_at
        - custom_fields
        - first_name
        - last_name
        - email
        - disabled
        - remote_created_at
        - access_role
      title: AtsRemoteUser
      description: >-
        The AtsRemoteUser object represents a user profile from a remote system
        that interacts with the ATS.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````