GET
/
audits
/
logs
curl --request GET \
  --url https://api.live.paisr.tech/{version}/audits/logs \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "logs": [
      {
        "timestamp": "2023-11-07T05:31:56Z",
        "method": "POST",
        "route": "/v2/wallets",
        "user_agent": "PostmanRuntime",
        "response": {
          "status": 200,
          "body": {}
        },
        "auth": {
          "flow": "token",
          "uuid": "tkn_123456"
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

resource_id
string

The ID of the resource you want to filter based on. If non is provided the API will default to the profile ID.

method
enum<string>

The method to filter based on.

Available options:
GET,
POST,
PUT,
PATCH,
DELETE
auth_flow
enum<string>

The authentication flow to filter based on.

Available options:
token,
member

Response

200
application/json
Successfully retrieved the list of logs.
success
boolean
Example:

true

data
object