curl --request PATCH \
--url https://statsigapi.net/scim/Users/{id} \
--header 'Content-Type: application/json' \
--data '
{
"schemas": [
"<string>"
],
"Operations": [
{
"op": "replace",
"value": {
"active": true
}
}
]
}
'curl --request PATCH \
--url https://statsigapi.net/scim/Users/{id} \
--header 'Content-Type: application/json' \
--data '
{
"schemas": [
"<string>"
],
"Operations": [
{
"op": "replace",
"value": {
"active": true
}
}
]
}
'Was this page helpful?