v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Account
Master account

Get user activity logs

get/organization/activities

Query parameters

startDatestring

Mandatory if endDate is used. Enter start date in UTC date (YYYY-MM-DD) format to filter the activity in your account. Maximum time period that can be selected is one month. Additionally, you can retrieve activity logs from the past 12 months from the date of your search.

endDatestring

Mandatory if startDate is used. Enter end date in UTC date (YYYY-MM-DD) format to filter the activity in your account. Maximum time period that can be selected is one month.

limitinteger

Number of documents per page

offsetinteger

Index of the first document in the page.

Response

list of user activity logs

Example response

{
  "logs": [
    {
      "action": "login-success",
      "date": "2023-03-27T16:30:00Z",
      "user_email": "test@mycompany.com",
      "user_ip": "192.158.1.38",
      "user_agent": "Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us)"
    }
  ]
}