Transfer a call to a new destination. If the transfer is unsuccessful, a call.hangup webhook for the other call (Leg B) will be sent indicating that the transfer could not be completed. The original call will remain active and may be issued additional commands, potentially transfering the call to an alternate destination.
Expected Webhooks:
call.initiatedcall.bridged to Leg Bcall.answered or call.hangupcall.machine.detection.ended if answering_machine_detection was requestedcall.machine.greeting.ended if answering_machine_detection was requested to detect the end of machine greetingcall.machine.premium.detection.ended if answering_machine_detection=premium was requestedcall.machine.premium.greeting.ended if answering_machine_detection=premium was requested and a beep was detectedBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier and token for controlling the call
Transfer call request
The DID or SIP URI to dial out to.
"+18005550100 or sip:username@sip.telnyx.com"
The from number to be used as the caller id presented to the destination (to number). The number should be in +E164 format. This attribute will default to the to number of the original call if omitted.
"+18005550101"
The from_display_name string to be used as the caller id name (SIP From Display Name) presented to the destination (to number). The string should have a maximum of 128 characters, containing only letters, numbers, spaces, and -_~!.+ special characters. If ommited, the display name will be the same as the number in the from field.
"Company Name"
The URL of a file to be played back when the transfer destination answers before bridging the call. The URL can point to either a WAV or MP3 file. media_name and audio_url cannot be used together in one request.
"http://example.com/message.wav"
If set to false, early media will not be passed to the originating leg.
false
The media_name of a file to be played back when the transfer destination answers before bridging the call. The media_name must point to a file previously uploaded to api.telnyx.com/v2/media by the same user/organization. The file must either be a WAV or MP3 file.
"my_media_uploaded_to_media_storage_api"
The number of seconds that Telnyx will wait for the call to be answered by the destination to which it is being transferred. If the timeout is reached before an answer is received, the call will hangup and a call.hangup webhook with a hangup_cause of timeout will be sent. Minimum value is 5 seconds. Maximum value is 600 seconds.
60
Sets the maximum duration of a Call Control Leg in seconds. If the time limit is reached, the call will hangup and a call.hangup webhook with a hangup_cause of time_limit will be sent. For example, by setting a time limit of 120 seconds, a Call Leg will be automatically terminated two minutes after being answered. The default time limit is 14400 seconds or 4 hours and this is also the maximum allowed call length.
30 <= x <= 14400600
Specifies behavior after the bridge ends (i.e. the opposite leg either hangs up or is transferred). If supplied with the value self, the current leg will be parked after unbridge. If not set, the default behavior is to hang up the leg.
"self"
Enables Answering Machine Detection. When a call is answered, Telnyx runs real-time detection to determine if it was picked up by a human or a machine and sends an call.machine.detection.ended webhook with the analysis result. If 'greeting_end' or 'detect_words' is used and a 'machine' is detected, you will receive another 'call.machine.greeting.ended' webhook when the answering machine greeting ends with a beep or silence. If detect_beep is used, you will only receive 'call.machine.greeting.ended' if a beep is detected.
premium, detect, detect_beep, detect_words, greeting_end, disabled Optional configuration parameters to modify 'answering_machine_detection' performance.
Custom headers to be added to the SIP INVITE.
[
{ "name": "head_1", "value": "val_1" },
{ "name": "head_2", "value": "val_2" }
]Use this field to add state to every subsequent webhook. It must be a valid Base-64 encoded string.
"aGF2ZSBhIG5pY2UgZGF5ID1d"
Use this field to add state to every subsequent webhook for the new leg. It must be a valid Base-64 encoded string.
"aGF2ZSBhIG5pY2UgZGF5ID1d"
Use this field to avoid duplicate commands. Telnyx will ignore any command with the same command_id for the same call_control_id.
"891510ac-f3e4-11e8-af5b-de00688a4901"
Defines whether media should be encrypted on the new call leg.
disabled, SRTP, DTLS SIP Authentication username used for SIP challenges.
"username"
SIP Authentication password used for SIP challenges.
"password"
SIP headers to be added to the SIP INVITE. Currently only User-to-User header is supported.
[
{ "name": "User-to-User", "value": "value" }
]Defines SIP transport protocol to be used on the call.
UDP, TCP, TLS Use this field to modify sound effects, for example adjust the pitch.
{
"pitch": "0.8",
"semitone": -2,
"octaves": 0.1,
"track": "both"
}Use this field to override the URL for which Telnyx will send subsequent webhooks to for this call.
"https://www.example.com/server-b/"
HTTP request type used for webhook_url.
POST, GET "GET"
When enabled, DTMF tones are not passed to the call participant. The webhooks containing the DTMF information will be sent.
none, both, self, opposite "opposite"
Start recording automatically after an event. Disabled by default.
record-from-answer "record-from-answer"
Defines which channel should be recorded ('single' or 'dual') when record is specified.
single, dual "single"
Defines the format of the recording ('wav' or 'mp3') when record is specified.
wav, mp3 "wav"
Defines the maximum length for the recording in seconds when record is specified. The minimum value is 0. The maximum value is 43200. The default value is 0 (infinite).
1000
The number of seconds that Telnyx will wait for the recording to be stopped if silence is detected when record is specified. The timer only starts when the speech is detected. Please note that call transcription is used to detect silence and the related charge will be applied. The minimum value is 0. The default value is 0 (infinite).
100
The audio track to be recorded. Can be either both, inbound or outbound. If only single track is specified (inbound, outbound), channels configuration is ignored and it will be recorded as mono (single channel).
both, inbound, outbound "outbound"
When set to trim-silence, silence will be removed from the beginning and end of the recording.
trim-silence "trim-silence"
The custom recording file name to be used instead of the default call_leg_id. Telnyx will still add a Unix timestamp suffix.
1 - 40"my_recording_file_name"
Defines the SIP region to be used for the call.
US, Europe, Canada, Australia, Middle East "Canada"
Successful response upon making a call control command.
{ "result": "ok" }