Skip to content

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.

MethodEndpointDescription
POST/integrations/event/{uuid}/Integration event callback (internal only)
POST/integrations/webhook/{uuid}/{type}/Integration webhook callback (internal only)
POST/integrations/event/{uuid}/

Integration event callback (internal only)

default

Documented but NOT consumer-callable. Consumed by internal integration callbacks.

Path parameters

NameTypeRequiredDescription
uuidstring (uuid)Required

Errors

StatusWhen
401Missing/invalid/expired credential
403Authenticated but not permitted
429Throttled - 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.
POST/integrations/webhook/{uuid}/{type}/

Integration webhook callback (internal only)

default

Documented but NOT consumer-callable. Signature-verified callback for third-party webhook payloads.

Path parameters

NameTypeRequiredDescription
uuidstring (uuid)Required
typestringRequired

Errors

StatusWhen
401Missing/invalid/expired credential
403Authenticated but not permitted
429Throttled - 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.