Hangup a call

Hangup call command can be used in two situation:

  • Hangup an ongoing call.

  • Reject an inbound call that is starting or ringing

Reasons hangup a call - not mandatory

type: object
title: HangupCalls
additionalProperties: false
properties:
  cause:
    type: "string"
    enum:
      - rejected
      - busy

Hangup call

post

Hangup a channel call

Authorizations
Path parameters
workspaceIdstring · uuidRequired

The ID of the workspace

callIdstring · uuidRequired

The ID for a call

channelIdstring · uuidRequired

The ID for a channel

Body
causestring · enumOptionalPossible values:
Responses
202
Call Command hangup was accepted for processing
application/json
post
POST /workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/hangup HTTP/1.1
Host: 
Authorization: Bearer jwt
Content-Type: application/json
Accept: */*
Content-Length: 20

{
  "cause": "rejected"
}
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "callId": "123e4567-e89b-12d3-a456-426614174000",
  "callFlowId": "123e4567-e89b-12d3-a456-426614174000",
  "status": "text",
  "command": "text",
  "conditions": [
    {
      "variable": "keys",
      "operator": "eq",
      "value": "text"
    }
  ]
}

Example 1: Hangup a call

curl -X POST "https://api.bird.com/workspaces/{workspaceId}/channels/{channelId}/calls/{callId}/hangup" \
     -H "Authorization: AccessKey {your-access-key}"

Last updated

Was this helpful?