Skip to main content

AccountDeleteRequestInput

Contains the required information for processing a user-initiated account deletion request, including the reason for deletion.

Properties

NameTypeDescriptionNotes
commentsstrReason for deleting the account.[optional]
}

Example

from sailpoint.account_deletion_requests.models.account_delete_request_input import AccountDeleteRequestInput

account_delete_request_input = AccountDeleteRequestInput(
comments='Requesting account deletion request'
)

[Back to top]