Skip to main content
PATCH
/
scim
/
Users
/
{userUid}
Update user
curl --request PATCH \
  --url https://eu.phrase.com/idm/scim/Users/{userUid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/scim+json' \
  --data '
{
  "Operations": [
    {
      "path": "<string>",
      "value": "<unknown>"
    }
  ],
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:PatchOp"
  ]
}
'
{
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:Error"
  ],
  "status": "<string>",
  "scimType": "<string>",
  "detail": "<string>"
}

Authorizations

Authorization
string
header
required

SCIM access token issued via Phrase Platform organization settings. The Bearer token value must be configured in Phrase Platform SCIM section.

Path Parameters

userUid
string
required

Phrase Platform identity UID of the user

Body

SCIM PATCH request body (RFC 7644 Section 3.5.2)

Operations
object[]
required

List of PATCH operations to apply

Minimum array length: 1
schemas
string[]

SCIM schema URNs

Example:
[
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
]

Response

User updated successfully — no content returned