Skip to main content
GET
/
v1
/
audit-logs
List audit logs
curl --request GET \
  --url https://api.plexospay.com/v1/audit-logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "entityType": "<string>",
      "entityId": "<string>",
      "action": "<string>",
      "actorType": "<string>",
      "actorId": "<string>",
      "previousState": {},
      "newState": {},
      "ipAddress": "<string>",
      "userAgent": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasMore": true
}
Returns a chronological audit trail of all changes to resources in your account. Useful for compliance, debugging, and security monitoring. Filter by entity_type, entity_id, or action to narrow results.

Authorizations

Authorization
string
header
required

API key starting with sk_live_ or sk_test_

Query Parameters

limit
integer
default:20

Max items per page (1-100)

Required range: 1 <= x <= 100
starting_after
string

Cursor — ID of the last item from previous page

entity_type
string
entity_id
string
action
string

Response

200 - application/json

Paginated list of audit logs

data
object[]
hasMore
boolean