mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
---
|
||||
id: beta-close-access-request
|
||||
title: CloseAccessRequest
|
||||
pagination_label: CloseAccessRequest
|
||||
sidebar_label: CloseAccessRequest
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'CloseAccessRequest', 'BetaCloseAccessRequest']
|
||||
slug: /tools/sdk/python/beta/models/close-access-request
|
||||
tags: ['SDK', 'Software Development Kit', 'CloseAccessRequest', 'BetaCloseAccessRequest']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.beta.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'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user