Hello,
I am trying to use the Sailpoint Beta API to add a user to a role using the Patch a specified Role method provided by the api. I am receiving the following errors:
{
** “detailCode”: “400.1 Bad request content”,**
** “trackingId”: “2daa3242ee3f46a19d99c97c97b34f8d”,**
** “messages”: [**
** {**
** “locale”: “en-US”,**
** “localeOrigin”: “DEFAULT”,**
** “text”: “The request was syntactically correct but its content is semantically invalid.”**
** }**
** ],**
** “causes”: **
}
My request body looks like the following:
[{
“op”: “add”,
“path”: “/memebership/identities/-”,
“value”: “Users Identity ID”
}
]
I have set the content type to be: application/json-patch+json.
Please advice what I am doing wrong.
Thank you.