v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
IAM Reseller Account

Account Requests

Information about the account's requests.

get/iam/activity_log/requests

Query parameters

limitinteger

The maximum number of items.

offsetinteger

Offset relative to the beginning of list.

Response

OK.

countnumber required

Total number of users

nextstring

URL to the next users slice

previousstring

URL to the previous users slice

Example response

{
  "next": "/activity_log/requests?offset=20&limit=10",
  "previous": "/activity_log/requests?offset=10&limit=10",
  "result": [
    {
      "id": 123456,
      "actions": "2024-11-13T15:23:30Z",
      "data": "string",
      "user_email": "some@email.com",
      "client": 123456,
      "token": 123456,
      "requested_at": "2024-11-13T15:23:30Z",
      "path": "/users",
      "remote_ip_address": "192.168.1.1",
      "host": "example.com",
      "method": "GET",
      "query_params": "offset=20&limit=10",
      "status_code": 200,
      "reverted": true,
      "user": 123456
    }
  ]
}