Journal Published Event Webhook

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developer.adra.com/doc/journal-entry/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Journal Entry MCP server": {
    "url": "https://developer.adra.com/doc/journal-entry/mcp"
  }
}

Close
POST https://webhook.example.com

This event is triggered when a journal is published as ready to post. The request body contains the journal-published payload directly.

application/json

Body Required

  • JournalId string(uuid) Required

    JournalId is the same as journalGuid in other models

  • ResourceUrl string Required

    Resource URL

Responses

  • 200

    Webhook received successfully

  • default application/problem+json

    Error

    Hide response attributes Show response attributes object
    • type string
    • title string
    • status integer(int32)
    • detail string
    • instance string
POST JournalPublished
Request examples
{
  "JournalId": "string",
  "ResourceUrl": "string"
}
Response examples (default)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}