Skip to main content

Workitemforward

Properties

NameTypeDescriptionNotes
target_owner_idstrThe ID of the identity to forward this work item to.[required]
commentstrComments to send to the target owner[required]
send_notificationsboolIf true, send a notification to the target owner.[optional] [default to True]
}

Example

from sailpoint.work_items.models.workitemforward import Workitemforward

workitemforward = Workitemforward(
target_owner_id='2c9180835d2e5168015d32f890ca1581',
comment='I'm going on vacation.',
send_notifications=True
)

[Back to top]