Receive Matcher Report 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/integration-hub/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Integration Hub MCP server": {
    "url": "https://developer.adra.com/doc/integration-hub/mcp"
  }
}

Close
POST https://webhook.example.com

Webhook event triggered when a matcher report has been published. The request body contains the published-report payload directly.

application/json

Body Required

  • UniqueFileName string Required

    Unique file name

  • DownloadUrl string Required

    Download 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 MatcherReportPublishedEvent
Request examples
{
  "UniqueFileName": "string",
  "DownloadUrl": "string"
}
Response examples (default)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}