Skip to main content

RolePropagationConfigResponse

Role Change Propagation Config Response

Properties

NameTypeDescriptionNotes
enabledboolIndicates if the Role Change Propagation process is enabled for the tenant[optional] [default to False]
enabled_datedatetimeThe time when Role Change Propagation Process was last enabled on the tenant[optional]
created_datedatetimeThe time when Role Change Propagation Configuration was first created for the tenant[optional]
modified_datedatetimeThe time when Role Change Propagation Config was updated on the tenant[optional]
}

Example

from sailpoint.role_propagation.models.role_propagation_config_response import RolePropagationConfigResponse

role_propagation_config_response = RolePropagationConfigResponse(
enabled=True,
enabled_date='2026-01-27T08:07:20Z',
created_date='2025-02-18T20:20:36Z',
modified_date='2026-01-27T08:07:20Z'
)

[Back to top]