patch https://api.bigpanda.io/resources/v2.0/scim/Users/
Updates field values for a user
Authentication
All BigPanda APIs require Bearer Token Authorization in the call headers.
This API uses the User API Key type of Authorization token.
Sample Call
curl --request POST \
--url https://api.bigpanda.io/resources/v2.0/scim/Users/628ed6b59c58cc555125551e \
--header 'Authorization: Bearer <User API Key>' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"phoneNumbers": [
{
"value": "+1-555-555-5555",
"type": "home"
}
],
"roles": [
"user"
],
"displayName": "Becky Sterling",
"active": true
}
'
curl --request POST \
--url https://eu-api.bigpanda.io/resources/v2.0/scim/Users/628ed6b59c58cc555125551e \
--header 'Authorization: Bearer <User API Key>' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"phoneNumbers": [
{
"value": "+1-555-555-5555",
"type": "home"
}
],
"roles": [
"user"
],
"displayName": "Becky Sterling",
"active": true
}
'