Logs
Audit logs recording user and system activity.
Return a list of all logs. Only users with the Standard Registry role are allowed to make the request.
Log severity filter. When empty, all logs are returned.
Sort order
Successful operation.
Unauthorized request.
Forbidden
Internal server error.
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. Only users with the Standard Registry role are allowed to make the request. Response is limited to 20 items.
Attribute name filter
SearchExisting attributes
["WORKER"]Successful operation. Maximum 20 attribute values.
["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; "]Unauthorized request.
Forbidden
Internal server error.
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. Only users with the Standard Registry role are allowed to make the request.
Successful operation.
SEQ UI URL
http://localhost:5341Unauthorized request.
Forbidden
Internal server error.
GET /api/v1/logs/seq HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"seq_url": "http://localhost:5341"
}Last updated