Skip to main content

Requestonbehalfofconfigv1

Properties

NameTypeDescriptionNotes
allow_request_on_behalf_of_anyone_by_anyoneboolIf this is true, anyone can request access for anyone.[optional] [default to False]
allow_request_on_behalf_of_employee_by_managerboolIf this is true, a manager can request access for his or her direct reports.[optional] [default to False]
}

Example

from sailpoint.access_requests.models.requestonbehalfofconfigv1 import Requestonbehalfofconfigv1

requestonbehalfofconfigv1 = Requestonbehalfofconfigv1(
allow_request_on_behalf_of_anyone_by_anyone=True,
allow_request_on_behalf_of_employee_by_manager=True
)

[Back to top]