Journal Published Event Technical Preview

POST https://webhook.example.com

This event is triggered when a journal is published as ready to post

application/json

Body Required

  • EventId string(uuid) Required

    Unique Event Identifier

  • CorrelationId string(uuid)

    Correlation identifier

  • EventType string Required

    Event type

  • EventMessage string Required

    Human-readable event description

  • CreatedDate string(date-time) Required

    Time of the event

  • Payload object Required
    Hide Payload attributes Show Payload attributes object
    • JournalId string(uuid) Required

      Journal Identifier

    • ResourceUrl string Required

      Resource URL

Responses

  • 200

    Webhook received successfully

  • default application/problem+json

    Error

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
POST JournalPublished
Request examples
{
  "EventId": "string",
  "CorrelationId": "string",
  "EventType": "string",
  "EventMessage": "string",
  "CreatedDate": "2025-05-04T09:42:00Z",
  "Payload": {
    "JournalId": "string",
    "ResourceUrl": "string"
  }
}
Response examples (default)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}