REST Adapter for Fusion API doesnt form payload well if it has ""
Summary
REST Adapter doesnt form payload well if it has "[" & "]"Content
We have a requirement where we need to call a fusion Bulk REST API (Role removal API) and see the below issue:
https://<fusion URL>/hcmRestApi/scim/Bulk
The payload that needs to be formed is as below:
{
"Operations": [
{
"method": "PATCH",
"path": "/Roles/009A67DC641E8901E050F50A84316AB6",
"bulkId": "clientBulkId1",
"data": {
"members": [
{
"value": "3F7CB6B07A79E63CE050C80AABA81338",
"operation": "REMOVE"
}
]
}
},
{
"method": "PATCH",
"path": "/Roles/009A67DC643A8901E050F50A84316AB6",
"bulkId": "clientBulkId1",
"data": {
"members": [
{
"value": "3F7CB6B07A79E63CE050C80AABA81338"
Tagged:
0