Update

Description

Update a User.

Request

HTTP Method: PUT

Parameter Description
email Optional User email.
first_name Optional User first name.
last_name Optional User last name.
admin Optional Boolean flag indicating whether user should be admin. Default is false.
is_active Optional Boolean flag indicating whether user should be active. Default is true.
Path Parameter Description
user_id ID of the user.

Sample request


curl -X PUT \
  https://<<META.tenant.domain>>/api/v1/admin/users/<<user_id>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'
  -d '{
       "admin": true,
       "last_name": "Bloggs"
      }'
}

Response

A successful request will return a JSON object describing the updated user.

Field description

Parameter Description
id User ID.
scim_uid SCIM User ID.
email User email.
admin Boolean flag indicating whether user is an admin.
is_active Boolean flag indicating whether user is active.
created_at Timestamp describing when the user was created.
updated_at Timestamp describing when the user was last updated.
first_name User first name.
last_name User last name.
last_seen Timestamp describing when the user was last seen in the platform.

Sample response

{
  "id": 3,
  "scim_uid": null,
  "email": "alice@tines.xyz",
  "created_at": "2019-11-03T09:57:49.537Z",
  "updated_at": "2019-11-03T09:57:49.537Z",
  "admin": true,
  "is_active": true,
  "first_name": "Alice",
  "last_name": "Bloggs",
  "last_seen": null
}
Was this helpful?