Skip to main content
POST
/
v1
/
webhooks
/
calls
/
receive
/
pipecat
cURL
curl --request POST \
  --url https://api.comm.com/api/v1/webhooks/calls/receive/pipecat \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "call_id": "<string>",
  "event": "<string>",
  "status": "<string>",
  "duration": "<string>",
  "outcome": "<string>",
  "recording_url": "<string>",
  "transcript_url": "<string>",
  "end_reason": "<string>",
  "transcript": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
call_id
string

Extract webhook payload

event
string
status
string
duration
string
outcome
string
recording_url
string
transcript_url
string
end_reason
string
transcript
string

Response

success
boolean
required