Skip to content

Transfer talk

Make a call transfer

Method transfer.talk
API version v4.0
Description The method allows you to transfer a call to another employee or to an external number (see the "Call state diagram" section).
Return to list of methods

The method is available for use only after calling make.call - see the "Call state diagram" section.

Request parameters

Name Type Required Description
access_token string yes Authentication session key
call_session_id number yes A unique call session identifier that can be obtained in the response of the start.vnumber_call, start.scenario_call, and start.employee_call methods, using the notification server or the DATA API.

Example request

{
  "jsonrpc": "2.0",
  "method": "transfer.talk",
  "id": "req1",
  "params": {
    "access_token": "2fRN4g217ca0b4224a67988aff3e584f91964a692045415f36fa66146f5a3c1ae1f6093d",
    "call_session_id": 2786459
  }
}

Example response

{
  "jsonrpc": "2.0",
  "id": "req1",
  "result": {
    "data": {
      "success": "true"
    }
  }
}

List of returned errors

Error text Error code Mnemonics Description
This method cannot be called in this state -32004 invalid_state The method can only be called after make.call and in the dialing or operator_talk state (see the Call state diagram section)

See also the section "List of errors common for all methods".