Storm docs logo
Search the docs.../
Explore Storm Products

Application Journal

Returns a paginated list of journal entries (events and state changes) for a specific application.

Request

PropertyValue
MethodGET
URL/api/applications/{appName}/journal
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X GET "{BASE_URL}/api/applications/{appName}/journal" \
  -H "Authorization: Bearer YOUR_TOKEN"

Path Parameters

ParameterTypeRequiredDescription
appNamestringYesApplication name
Request
Code iconbash
curl -X GET "{BASE_URL}/api/applications/{appName}/journal" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

Pagination

ParameterTypeDescription
data.totalItemsintegerTotal number of journal entries
data.itemsPerPageintegerNumber of items per page
data.totalPagesintegerTotal number of pages
data.currentPageintegerCurrent page number
data.hasPreviousbooleanIndicates if a previous page exists
data.hasNextbooleanIndicates if a next page exists
data.lastTimestampintegerTimestamp of the most recent entry (Unix timestamp in ms)

Journal Entry

ParameterTypeDescription
data.list[].idintegerUnique identifier of the journal entry
data.list[].objectNamestringName of the object associated with this event
data.list[].messagestringJournal message describing the event
data.list[].threadNamestringThread name that generated the entry
data.list[].createDateintegerEntry creation timestamp (Unix timestamp in ms)

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "totalItems": 62,
    "itemsPerPage": 20,
    "totalPages": 4,
    "currentPage": 1,
    "hasPrevious": false,
    "hasNext": true,
    "lastTimestamp": 1764683374354,
    "list": [
      {
        "id": 60,
        "objectName": "Stream: xxx",
        "message": "Status Update: PUBLISHED",
        "threadName": "WebSocketConnectReadThread-525",
        "createDate": 1764683374354
      },
      {
        "id": 61,
        "objectName": "Stream: xxx",
        "message": "Status Update: PUBLISHED",
        "threadName": "WebSocketConnectReadThread-525",
        "createDate": 1764683374354
      },
      {
        "id": 58,
        "objectName": "Stream: xxx",
        "message": "Status Update: NOT_PUBLISHED",
        "threadName": "WebSocketConnectReadThread-525",
        "createDate": 1764683374353
      },
      {
        "id": 59,
        "objectName": "Stream: xxx",
        "message": "Status Update: AWAITING",
        "threadName": "WebSocketConnectReadThread-525",
        "createDate": 1764683374353
      }
    ]
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1764845051650
  }
}

Error Responses

Application Not Found (404)

ParameterTypeDescription
messagestringHuman-readable error message
Code iconjson
{
  "message": "Application not found"
}
Support Needed?

Create a free ticket and our support team will provide you necessary assistance.

Blog
Support
About us
Patents
Term of use
Privacy policy
Contact
©2026 Storm Streaming Media. All Rights Reserved.