Skip to content

Receive Webhook Event

POST/internal/slash/connections/{connectionBizId}/eventsNone

Receives and ingests a webhook event from the Slash platform. Duplicate events are detected and ignored.

Authentication

No JWT required. This is an internal endpoint with no portal restriction.

Request Parameters

NameTypeRequiredInDescription
connectionBizIdStringYespathSlash connection business ID.
eventObjectYesbodyThe webhook event payload from the Slash platform.

Success Response

Duplicate Ignored200
{
  "code": "2000",
  "message": "SUCCESS",
  "data": "Duplicate event ignored"
}

Error Responses

HTTP StatusCodeDescription
4044040Connection not found

Notes

  • The endpoint validates the connection exists before ingesting the event.
  • Duplicate events are automatically detected and ignored, returning a different message.
  • The event payload is stored in the webhook event log for auditing and processing.

Internal Documentation