Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://apix.us.amity.co/api/v1/reports/user-last-activity \
--header 'Authorization: Bearer <token>'
{
"networkId": "<string>",
"downloadUrl": "https://example.com/reports/user-last-activity.csv"
}
Retrieve the last activity report for users in the network. Requires admin permissions.
curl --request GET \
--url https://apix.us.amity.co/api/v1/reports/user-last-activity \
--header 'Authorization: Bearer <token>'
{
"networkId": "<string>",
"downloadUrl": "https://example.com/reports/user-last-activity.csv"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.