Receive Closing Rate Job Completed 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 Closing Rate job has completed processing. The request body contains the job-completed payload directly.

application/json

Body Required

  • Engagement string Required

    Engagement

  • UniqueFileName string Required

    Unique file name

  • Result string Required

    The result of the job processing. Possible values:

    • Succeeded: All records processed successfully
    • PartiallySucceeded: Some records processed with errors
    • Failed: Processing failed
    • Rejected: File was rejected (e.g., malware)
    • WaitingInteraction: Waiting for user input
    • Discarded: Processing was cancelled or discarded
    • Deleted: File was deleted

    Values are Succeeded, PartiallySucceeded, Failed, Rejected, WaitingInteraction, Discarded, or Deleted.

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 ClosingRateJobCompletedEvent
Request examples
{
  "Engagement": "string",
  "UniqueFileName": "string",
  "Result": "Succeeded"
}
Response examples (default)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}