Skip to main content

ApprovalRequestedTarget

Represents a requested target in an approval process, including details such as ID, name, reauthentication requirements, and removal date.

Properties

NameTypeDescriptionNotes
forced_auth_signaturestrSignature required for forced authentication.[optional]
idstrID of the requested target.[optional]
namestrName of the requested target.[optional]
reauth_requiredboolIndicates if reauthentication is required.[optional] [default to False]
removal_datedatetimeDate when the target will be removed.[optional]
request_typestrType of the request.[optional]
target_typestrType of the target.[optional]
}

Example

from sailpoint.v2025.models.approval_requested_target import ApprovalRequestedTarget

approval_requested_target = ApprovalRequestedTarget(
forced_auth_signature='string',
id='string',
name='string',
reauth_required=True,
removal_date='2025-07-07T18:10:13.687Z',
request_type='string',
target_type='string'
)

[Back to top]