pub async fn retrieve_user_actioning(
configuration: &Configuration,
user_id: Option<&str>,
preventing_login: Option<&str>,
active: Option<&str>,
) -> Result<ActionResponse, Error<RetrieveUserActioningError>>
Expand description
Retrieves all the actions for the user with the given Id that are currently preventing the User from logging in. OR Retrieves all the actions for the user with the given Id. This will return all time based actions that are active, and inactive as well as non-time based actions. OR Retrieves all the actions for the user with the given Id that are currently active. An active action means one that is time based and has not been canceled, and has not ended. OR Retrieves all the actions for the user with the given Id that are currently inactive. An inactive action means one that is time based and has been canceled or has expired, or is not time based.