We have an API endpoint /publisher/team/list through which you can export all Team Manager members.
The API call (for an application on the US dashboard at https://dashboard.piano.io/) should be in the following format: https://api.piano.io/api/v3/publisher/team/list?aid=XXX&api_token=XXX
As a response, you will receive the information about the last login timestamp in the parameter last_login (in UNIX time) for each member as well as the full list of all team members for the AID used in the API call.
An example response for one Team Member user would look like this:
{
"first_name" : "Test",
"last_name" : "Tester",
"personal_name" : "Test Tester",
"email" : "test@piano.io",
"uid" : "AbCW1lVYI0",
"create_date" : 1474893439,
"last_login" : 1643097419,
"permissions" : [ "global_admin", "manage_business", "manage_promotions", "manage_templates", "manage_offers", "manage_notifications", "manage_users", "manage_terms", "manage_resources", "manage_paywalls", "manage_webhooks", "manage_team", "manage_composer", "view_composer", "manage_esp_site", "manage_esp_account", "manage_checkout_flows", "manage_cookie_manager", "manage_site_licenses", "non_financial_reports", "financial_reports", "revoke_access", "refund_payment", "cancel_subscription", "manage_cxense_site", "view_global_library", "global_library_manage_deployment", "manage_global_experiences" ]
}