Missing 'removeDate' Attribute in Access Request Submitted Event

Hello everyone,

We are using the Access Request Submitted event to implement a business rule in one of our workflows. However, we’ve noticed that the “removeDate” attribute is not included in the requestItems sent with the event. This attribute is crucial for our validation.

Could you please clarify if there is a specific reason for its absence? We appreciate any information on this matter.

Hi @matheusfeitosa ,

Welcome to the SailPoint Developer community.

As per Access Request Submitted | SailPoint Developer Community, the input to the subscribing services doesn’t include removeDate attribute.

Understood that removeDate attribute is present in the response of list-pending-approvals | SailPoint Developer Community API call.

I believe you have a workflow with External Trigger which gets input from the Access Request Submitted event trigger. After this step, you can include the HTTP Request action to make the list-pending-approvals | SailPoint Developer Community API call with query parameter as filters=requestedFor.id eq {{$.trigger.requestedFor.id}}. In the response of this call, you will receive the removeDate attribute. This can help you fetch the removeDate attribute and continue processing your workflow.

HTH

2 Likes

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.