Skip to main content
PATCH
/
api
/
svc
/
v1
/
scim
/
v2
/
{tenantName}
/
{ssoId}
/
Users
/
{id}
Update User
curl --request PATCH \
  --url https://{controlPlaneURL}/api/svc/v1/scim/v2/{tenantName}/{ssoId}/Users/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "schemas": [
    "<string>"
  ],
  "Operations": [
    {
      "op": "Add",
      "path": "<string>",
      "value": {}
    }
  ]
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

tenantName
string
required

Tenant name

ssoId
string
required

SSO configuration ID

id
string
required

Resource ID

Body

application/json
schemas
string[]
required
Operations
ScimPatchOperation · object[]
required

Response

User updated