We have created one custom field call "tags" in SCIM mapping. But when we create a user, the POST request doesn't contain "tags" field. The same field gets updated when next PATCH call happens during an update. Here is the mapping for"tags" field:
Join(":", [jobTitle], [department]) tags
Apply this mapping : Always
Also pasting request body for reference. Please check & let us know why "tags" field is not coming as part of POST request. "tags" is part of schema "urn:ietf:params:scim:schemas:core:2.0:User"
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User", "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User"],
"externalId": "new.scim.user5",
"userName": "new.scim.user5",
"active": true,
"displayName": "new.scim.user5 DN",
"emails": [{
"primary": true,
"type": "work",
"value": "new.scim.user5@BlueJeansNetwork.onmicrosoft.com"
}],
"meta": {
"resourceType": "User"
},
"name": {
"formatted": "new.scim.user5 FN new.scim.user5 LN",
"familyName": "new.scim.user5 LN",
"givenName": "new.scim.user5 FN"
},
"roles": [],
"title": "QA Lead",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
"department": "Q&A Engineering"
}
}