Click HERE to see how Saviynt Intelligence is transforming the industry. |
07/24/2024 05:38 AM
Hi Experts,
how to update extensionAttribute1 to AZURE_AD guest accounts using UPDATEACCOUNTJSON.
please provide any sample JSON format
Thank You
Solved! Go to Solution.
07/24/2024 06:37 AM
Thank you, i got the JSON
{
"call": [{
"name": "call1",
"connection": "userAuth",
"url": "https://graph.microsoft.com/v1.0/users/${account.accountID}",
"httpMethod": "PATCH",
"httpParams": "{\"onPremisesExtensionAttributes\": {\"extensionAttribute1\": \"${user.username}\"}}",
"httpHeaders": {
"Authorization": "${access_token}"
},
"httpContentType": "application/json",
"successResponses": {
"statusCode": [200, 201, 204, 205]
}
}]
}