Skip to main content

RequestOnBehalfOfConfig

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.v2024.models.request_on_behalf_of_config import RequestOnBehalfOfConfig

request_on_behalf_of_config = RequestOnBehalfOfConfig(
allow_request_on_behalf_of_anyone_by_anyone=True,
allow_request_on_behalf_of_employee_by_manager=True
)

[Back to top]