GET
/
v1
/
users
/
{uid}
curl --request GET \
  --url https://api.siit.io/v1/users/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "uid": "<string>",
  "emails": [
    "<string>"
  ],
  "role_name": "owner",
  "status": "employee",
  "full_name": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "slack_user_id": "<string>",
  "department_uid": "<string>",
  "office_location_uid": "<string>",
  "legal_entity_uid": "<string>",
  "team_uids": [
    "<string>"
  ],
  "hire_date": "2023-11-07T05:31:56Z",
  "job_start_date": "2023-11-07T05:31:56Z",
  "job_leave_date": "2023-11-07T05:31:56Z",
  "gender": "female",
  "job_title": "<string>",
  "preferred_language": "<string>",
  "report_to_uid": "<string>",
  "timezone": "<string>",
  "work_phone": "<string>",
  "microsoft_entra_ids": [
    "<string>"
  ],
  "updated_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Introduction

Note: fields are always present in the response even if the field was disabled on the Admin Dashboard.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uid
string
required

The UID of the User

Response

200
application/json
User show
uid
string

The UID of the User.

emails
string[]

An array of all the known emails for this User.

role_name
enum<string>

The role of the User.

Available options:
owner,
admin,
it,
hr,
ops,
finance,
custom,
user
status
enum<string>
default:employee

The status of the User.

Available options:
hired,
employee,
alumni,
external
full_name
string | null

The full name of the User.

first_name
string | null
last_name
string | null
slack_user_id
string | null

The Slack user ID of the User (e.g. U0G9QF9C6).

department_uid
string | null

A tag UID of kind "department"

office_location_uid
string | null

A tag UID of kind "office_location"

A tag UID of kind "legal_entity"

team_uids
string[]

An array of tag UIDs of kind "team"

hire_date
string | null
job_start_date
string | null
job_leave_date
string | null
gender
enum<string> | null
Available options:
female,
male,
non_binary,
other,
prefer_not_to_disclose
job_title
string | null
preferred_language
string | null

A language in IETF format (en-US, pt-PT, fr-FR...)

report_to_uid
string | null

The UID of the manager of this user

timezone
string | null
work_phone
string | null
microsoft_entra_ids
string[]

The Microsoft Entra IDs (Azure Directory) of the User.

updated_at
string

datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")

created_at
string

datetime formatted as ISO 8601 (e.g. "2020-12-15T03:34:13.000Z")