For the complete documentation index, see llms.txt. This page is also available as Markdown.

Logs

Audit logs recording user and system activity.

Return a list of all logs.

post

Return a list of all logs. Only users with the Standard Registry role are allowed to make the request.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
typestring · enum · nullableRequired

Log severity filter. When empty, all logs are returned.

Possible values:
startDatestring · date-time · nullableRequired
endDatestring · date-time · nullableRequired
attributesstring[] · nullableRequired
messagestring · nullableRequired
pageSizenumber · nullableRequired
pageIndexnumber · nullableRequired
sortDirectionstring · enum · nullableRequired

Sort order

Possible values:
Responses
200

Successful operation.

application/json
totalCountnumberRequired
post/logs
POST /api/v1/logs HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 327

{
  "type": "WARN",
  "startDate": "2026-03-19T12:56:24.000Z",
  "endDate": "2026-03-21T12:56:24.000Z",
  "attributes": [
    "a3be3319-3558-4b69-bb69-de6e107dcf01",
    "txid: 0.0.6046379@1774020526.908989078; payer sigs: 1; total sigs: 1; message size: 600; memo size: 31; "
  ],
  "message": "TRANSACTION",
  "pageSize": 10,
  "pageIndex": 0,
  "sortDirection": "desc"
}
{
  "totalCount": 1,
  "logs": [
    {
      "message": "TopicMessageSubmitTransaction",
      "type": "INFO",
      "datetime": "2026-03-20T15:28:53.883Z",
      "attributes": [
        "TRANSACTION",
        "COMPLETION",
        "2026-03-20T15:28:53.883Z",
        "_",
        "TopicMessageSubmitTransaction",
        "9c409646-6de6-4e0a-a5b8-5010de7ded08",
        "0.0.6046379",
        "testnet",
        "txid: 0.0.6046379@1774020526.908989078; payer sigs: 1; total sigs: 1; message size: 600; memo size: 31; "
      ],
      "userId": null,
      "id": "69bd67b53090533214e731f1"
    }
  ]
}

Return a list of attributes.

get

Return a list of attributes. Only users with the Standard Registry role are allowed to make the request. Response is limited to 20 items.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
namestringOptional

Attribute name filter

Example: Search
existingAttributesstring[]Optional

Existing attributes

Example: ["WORKER"]
Responses
200

Successful operation. Maximum 20 attribute values.

application/json
string[] · max: 20OptionalExample: ["12142637-892d-4b1f-a046-eedff9e2a793","2026-03-20T08:26:37.248Z","2026-03-20T08:32:37.371Z","a3be3319-3558-4b69-bb69-de6e107dcf01","txid: 0.0.6046379@1774017194.587930740; payer sigs: 1; admin keys: 1; KYC keys: 1; wipe keys: 1; pause keys: 0; supply keys: 1; freeze keys: 1; token name size: 2; token symbol size: 2; token memo size: 11; memo size: 0; ","txid: 0.0.6046379@1774020526.908989078; payer sigs: 1; total sigs: 1; message size: 600; memo size: 31; "]
get/logs/attributes
GET /api/v1/logs/attributes HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  "12142637-892d-4b1f-a046-eedff9e2a793",
  "2026-03-20T08:26:37.248Z",
  "2026-03-20T08:32:37.371Z",
  "a3be3319-3558-4b69-bb69-de6e107dcf01",
  "txid: 0.0.6046379@1774017194.587930740; payer sigs: 1; admin keys: 1; KYC keys: 1; wipe keys: 1; pause keys: 0; supply keys: 1; freeze keys: 1; token name size: 2; token symbol size: 2; token memo size: 11; memo size: 0; ",
  "txid: 0.0.6046379@1774020526.908989078; payer sigs: 1; total sigs: 1; message size: 600; memo size: 31; "
]

Return url on seq store.

get

Return url on seq store. Only users with the Standard Registry role are allowed to make the request.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Successful operation.

application/json
seq_urlstring · nullableRequired

SEQ UI URL

Example: http://localhost:5341
get/logs/seq
GET /api/v1/logs/seq HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "seq_url": "http://localhost:5341"
}

Last updated

Was this helpful?