Skip to main content

Searcharguments

Properties

NameTypeDescriptionNotes
schedule_idstrThe ID of the scheduled search that triggered the saved search execution.[optional]
ownerTypedreferenceThe owner of the scheduled search being tested.[optional]
recipients[]TypedreferenceThe email recipients of the scheduled search being tested.[optional]
}

Example

from sailpoint.saved_search.models.searcharguments import Searcharguments

searcharguments = Searcharguments(
schedule_id='7a724640-0c17-4ce9-a8c3-4a89738459c8',
owner=sailpoint.saved_search.models.typedreference.typedreference(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313', ),
recipients=[
sailpoint.saved_search.models.typedreference.typedreference(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313', )
]
)

[Back to top]