Receive Webhook Event
POST
/internal/slash/connections/{connectionBizId}/events NoneReceives and ingests a webhook event from the Slash platform. Duplicate events are detected and ignored.
Required Headers
| Header | Example Value | Description |
|---|---|---|
| Content-Type | application/json | Request content type |
| Accept | application/json | Expected response type |
| X-Client-Hash | Client device fingerprint | |
| Accept-Language | en, zh, zh-Hant, ja, vi | Response language (default: en) |
| X-Workspace-Id | Target workspace ID |
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
connectionBizId | String | Required | path | Slash connection business ID. Path parameter |
event | Object | Required | body | The webhook event payload from the Slash platform. Request body (JSON) |
Success Response
Duplicate Ignored 200
{
"code": "2000",
"message": "SUCCESS",
"data": "Duplicate event ignored"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 404 | 4040 | Connection 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.