Complete/end a flash call using from/to numbers
This endpoint documentation is generated directly from openapi.yaml.
Endpoint
POST /bird/voice/flash-calls/end
Operation
Operation ID: birdEndFlashCallByNumbers
Ends an ongoing flash call by specifying the originating and destination numbers.
Authentication
Security requirements:
Scheme | Scopes |
|---|---|
BearerAuth | - |
Parameters
Name | In | Required | Type | Description |
|---|---|---|---|---|
workspaceId | query | no | string | Bird Workspace identifier (falls back to module configuration if omitted) |
channelId | query | no | string | Bird Channel identifier (falls back to module configuration if omitted) |
Request Body
Required: yes.
Content type: application/json
{
"additionalProperties": true,
"properties": {
"from": {
"description": "E.164 formatted caller number",
"example": "+4599988877",
"type": "string"
},
"to": {
"description": "E.164 formatted callee number",
"example": "+4511122233",
"type": "string"
}
},
"type": "object"
}
Responses
Status | Description | Content Types |
|---|---|---|
200 | Flash call completed (by numbers) | application/json |
Schema for response 200 (application/json):
{
"additionalProperties": true,
"type": "object"
}
17 March 2026