How to configure an OKTA SCIM2.0 application so that it can send custom attributes(like city, state, zip) and also groups in which the user is assigned to, with POST/PATCH/PUT requests
Current request obj received from okta is as below:
POST /Users
{
"schemas":["urn:ietf:params:scim:schemas:core:2.0:User"],
"userName":"abc@gmail.com",
"name":{
"givenName":"ABC",
"familyName":"DEF"
},
"emails":[{
"primary":true,
"value":"abc@gmail.com",
"type":"work"
}],
"displayName":"ABC DEF",
"locale":"en-US",
"externalId":"xxxxxxxxxxxx",
"groups":[],
"active":true
}
Thank You