SoulFire LogoSoulFire

Get audit log

Retrieves the audit log for an instance. Returns a list of recorded actions ordered by timestamp (newest first).

GET
/v1/instances/:id/audit-log

Retrieves the audit log for an instance. Returns a list of recorded actions ordered by timestamp (newest first).

Authorization

AuthorizationBearer <token>

Preferred API authentication. Use a JWT with the api audience.

In: header

Path Parameters

id*string

The unique identifier (UUID) of the instance.

Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X GET "http://127.0.0.1:38765/v1/instances/:id/audit-log"
{
  "entry": [
    {
      "id": "string",
      "user": {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "username": "string",
        "email": "user@example.com"
      },
      "type": "EXECUTE_COMMAND",
      "timestamp": {
        "seconds": 0,
        "nanos": 0
      },
      "data": "string"
    }
  ]
}

How is this page?