Skip to main content

Accessrequestresponse

Properties

NameTypeDescriptionNotes
new_requests[]AccessrequesttrackingA list of new access request tracking data mapped to the values requested.[optional]
existing_requests[]AccessrequesttrackingA list of existing access request tracking data mapped to the values requested. This indicates access has already been requested for this item.[optional]
}

Example

from sailpoint.access_requests.models.accessrequestresponse import Accessrequestresponse

accessrequestresponse = Accessrequestresponse(
new_requests=[{"requestedFor":"899fd612ecfc4cf3bf48f14d0afdef89","requestedItemsDetails":[{"type":"ENTITLEMENT","id":"779c6fd7171540bba1184e5946112c28"}],"attributesHash":-1928438224,"accessRequestIds":["5d3118c518a44ec7805450d53479ccdb"]}],
existing_requests=[{"requestedFor":"899fd612ecfc4cf3bf48f14d0afdef89","requestedItemsDetails":[{"type":"ROLE","id":"779c6fd7171540bbc1184e5946112c28"}],"attributesHash":2843118224,"accessRequestIds":["5d3118c518a44ec7805450d53479ccdc"]}]
)

[Back to top]