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": {}
}
]
}
'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": {}
}
]
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Tenant name
SSO configuration ID
Resource ID
User updated
Was this page helpful?