Get Webhook Secret
GET
/internal/slash/connections/{connectionBizId}/webhook-secret NoneRetrieves the plaintext webhook secret for a Slash connection. This is an internal endpoint used by the webhook verification service.
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 |
Success Response
Not Found 404
{
"code": "4040",
"message": "Connection not found"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 404 | 4040 | Connection not found |
Notes
- This endpoint returns the unmasked webhook secret. It is intended for internal service-to-service communication only.
- Must not be exposed to external clients.