Skip to main content

Responseactionaccepted

Acknowledgement returned when a response action is accepted for asynchronous processing.

Properties

NameTypeDescriptionNotes
request_idstrTracking handle and correlation id for the response action.[required]
statusEnum [ 'SUBMITTED', 'IN_PROGRESS', 'COMPLETED', 'FAILED' ]Aggregate status of the response action. SUBMITTED at creation (registered; no correlated workflow execution observed yet).[required]
status_urlstrRelative URL to poll for the current status of the response action.[required]
}

Example

from sailpoint.intelligence.models.responseactionaccepted import Responseactionaccepted

responseactionaccepted = Responseactionaccepted(
request_id='3f1e6c9a-8b2d-4e5f-9a1b-2c3d4e5f6a7b',
status='SUBMITTED',
status_url='/intelligence/v1/response-actions/3f1e6c9a-8b2d-4e5f-9a1b-2c3d4e5f6a7b/status'
)

[Back to top]