I am working on building a workflow that will trigger an access request to remove an entitlement based on a form that is submitted. I have been able to to get the api call working in Postman. When I add it to the step http request I am getting an error with 0 information other then the call failed.
This should of been a fairly straight forward workflow. However the way that the HTTP Request action works seems to have changed. It is not forcing me to use Parameter storage which I have my own credential manager configured. I am not getting any options to point to the PTA in order to grab the client information.
Then for the request:
I have tried to pass the json paths a number of ways with no luck.
{
"requestType": "REVOKE_ACCESS",
"requestedFor":"{$.interactiveForm.formData.networkId}",
"requestedItems": [
{
"comment": "No longer needed was assigned another license",
"id":"{$.interactiveForm.formData.m365License}",
"type": "ENTITLEMENT"
}
]
}
Has anyone else seen this odd behavior? How did you work around it?

