Skip to main content
PUT
/
scim
/
{workspace_id}
/
v2
/
Users
/
{user_id}
Update a SCIM user
curl --request PUT \
  --url https://public-api.tryriot.com/scim/{workspace_id}/v2/Users/{user_id} \
  --header 'Content-Type: application/scim+json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "active": true,
  "emails": [
    {
      "primary": true,
      "value": "[email protected]"
    }
  ],
  "name": {
    "familyName": "<string>",
    "givenName": "<string>"
  },
  "timezone": "<string>",
  "userName": "<string>"
}'
{}

Authorizations

x-api-key
string
header
required

Path Parameters

workspace_id
string<uuid>
required
user_id
string<uuid>
required

Body

application/scim+json
emails
object[]
required
Minimum length: 1
name
object
required
userName
string
required

Unique identifier for the user

active
boolean

Whether the user is active. Defaults to true if not provided

timezone
string

User's timezone in Olson format (e.g., 'America/Los_Angeles'). Defaults to workspace timezone if not provided.

Response

SCIM user updated

The response is of type object.