User Registration Report

Generates an Excel Xlsx file which contains the User Id, Device Name, and Registration status of all Users within the specified group.

This feature can be run without the output of an Excel sheet: api.scripter.user_registration()

Parameters

  • service_provider_id (str): Service Provider/ Enterprise where group is hosted.

  • group_id (str): Target Group you would like to pull the registration of users for.

Return

  • None: This will generate an Xlsx File into .os_reports/ named "Registration_report_for_(GroupID)"

The script makes use of the following methods:

api.scripter.user_registration()

How To Use:

This method requires keyword arguments i.e. group_id="group_id"

assistant = Reporter(my_api)

assistant.user_registration_report(
    service_provider_id="serviceProviderID",
    group_id="groupID",
)

Last updated

Was this helpful?