mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.6 KiB
1.6 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-close-access-request | CloseAccessRequest | CloseAccessRequest | CloseAccessRequest | pythonsdk |
|
/tools/sdk/python/v2025/models/close-access-request |
|
CloseAccessRequest
Request body payload for close access requests endpoint.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| access_request_ids | []str | Access Request IDs for the requests to be closed. Accepts 1-500 Identity Request IDs per request. | [required] |
| message | str | Reason for closing the access request. Displayed under Warnings in IdentityNow. | [optional] [default to 'The IdentityNow Administrator manually closed this request.'] |
| execution_status | Enum [ 'Terminated', 'Completed' ] | The request's provisioning status. Displayed as Stage in IdentityNow. | [optional] [default to 'Terminated'] |
| completion_status | Enum [ 'Success', 'Incomplete', 'Failure' ] | The request's overall status. Displayed as Status in IdentityNow. | [optional] [default to 'Failure'] |
| } |
Example
from sailpoint.v2025.models.close_access_request import CloseAccessRequest
close_access_request = CloseAccessRequest(
access_request_ids=[2c90ad2a70ace7d50170acf22ca90010],
message='The IdentityNow Administrator manually closed this request.',
execution_status='Terminated',
completion_status='Failure'
)