Hello everyone, I’m implementing a custom request for others trough a workflow that thanks to an external trigger fires. The external trigger is linked to the dynamic approver event trigger. Since I need to pass some information with the request that I’m sending trough a custom form, I’m using the clientMetadata field inside the request that I’m crafting, but it looks like that the dynamic approver event trigger is not capting the clientMetadata information of the HTTP Request. Anyone experienced with this event trigger can tell me how to access to the clienMetadata information? I’m trying?
You can use the {{$.trigger.accessRequestId}}
to make an HTTP request to one or both of the following APIs:
For example: GET /v2025/account-activities/{{$.trigger.accessRequestId}}
.
This will provide the clientMetadata
of the request level.
For example: GET /v2025/access-request-status?filters=accessRequestId eq "{{$.trigger.accessRequestId}}"
. This will provide the clientMetadata
at the requested item level.
It works, thanks you