Skip to main content
POST
/
v1
/
webhooks
Create webhook
curl --request POST \
  --url https://api.oneinbox.ai/v1/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Call events",
  "url": "https://example.com/webhook",
  "events": [
    "call.started",
    "call.ended",
    "transcript.final"
  ]
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.oneinbox.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key from the OneInbox dashboard (API Keys → Create)

Body

application/json
name
string
required
url
string<uri>
required
events
enum<string>[]
required
Available options:
call.started,
call.ended,
transcript.final

Response

201

Created