Integration callbacks · API Reference · Developers
Integration callback URLs — documented for reference but NOT consumer-callable.
Integration callback URLs — documented for reference but NOT consumer-callable.
| Method | Endpoint | Description |
|---|---|---|
| POST | /integrations/event/{uuid}/ | Integration event callback (internal only) |
| POST | /integrations/webhook/{uuid}/{type}/ | Integration webhook callback (internal only) |
Integration event callback (internal only)
default
Documented but NOT consumer-callable. Consumed by internal integration callbacks.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| uuid | string (uuid) | Required | — |
Errors
| Status | When |
|---|---|
| 401 | Missing/invalid/expired credential |
| 403 | Authenticated but not permitted |
| 429 | Throttled - Retry-After header set |
Code samples
curl -sS -X POST 'https://api.dailybot.com/integrations/event/{uuid}/' -H 'X-API-KEY: $DAILYBOT_API_KEY'Try it
This is a copy-only helper — the request is not sent from your browser. Paste the command into your terminal to execute it.
- Not consumer-callable.
Integration webhook callback (internal only)
default
Documented but NOT consumer-callable. Signature-verified callback for third-party webhook payloads.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| uuid | string (uuid) | Required | — |
| type | string | Required | — |
Errors
| Status | When |
|---|---|
| 401 | Missing/invalid/expired credential |
| 403 | Authenticated but not permitted |
| 429 | Throttled - Retry-After header set |
Code samples
curl -sS -X POST 'https://api.dailybot.com/integrations/webhook/{uuid}/{type}/' -H 'X-API-KEY: $DAILYBOT_API_KEY'Try it
This is a copy-only helper — the request is not sent from your browser. Paste the command into your terminal to execute it.
- Not consumer-callable.