GET
/
users
/
{user_id}
curl --request GET \
  --url https://api.shiftkeeper.io/users/{user_id} \
  --header 'x-api-key: <api-key>'
{
  "user": {
    "id": "usr_bq7CmsOKLmkMeZkUUu1hy",
    "name": "Rick",
    "email": "rick@example.org",
    "time_zone": "Europe/Paris",
    "role": "owner",
    "seat": "member",
    "slack_id": "U082KENSEQ3"
  }
}

Authorizations

x-api-key
string
header
required

Enter your API key which starts with 'keeper_'

Headers

x-shiftkeeper-api-version
string
default:2024-12-01

Shiftkeeper API version

Example:

"2024-12-01"

Path Parameters

user_id
string
required

The ID of the user.

Response

200
application/json
Default Response
user
object
required
Example:
{
  "id": "usr_bq7CmsOKLmkMeZkUUu1hy",
  "name": "Rick",
  "email": "rick@example.org",
  "time_zone": "Europe/Paris",
  "role": "owner",
  "seat": "member",
  "slack_id": "U082KENSEQ3"
}