Skip to main content

AccessRequestItemResponse

Properties

NameTypeDescriptionNotes
operationstrthe access request item operation[optional]
access_item_typestrthe access item type[optional]
namestrthe name of access request item[optional]
decisionEnum [ 'APPROVED', 'REJECTED' ]the final decision for the access request[optional]
descriptionstrthe description of access request item[optional]
source_idstrthe source id[optional]
source_namestrthe source Name[optional]
approval_infos[]ApprovalInfoResponse[optional]
}

Example

from sailpoint.v2024.models.access_request_item_response import AccessRequestItemResponse

access_request_item_response = AccessRequestItemResponse(
operation='Add',
access_item_type='role',
name='Role-1',
decision='APPROVED',
description='The role descrition',
source_id='8a80828f643d484f01643e14202e206f',
source_name='Source1',
approval_infos=[{name=John Snow, id=8a80828f643d484f01643e14202e2000, status=Approved}]
)

[Back to top]