1-877-548-3001 Sign in About Contact
Developer

POST

/api/callback/{id}/assign

Assign the specified callback to an operator

Scope:

operator

Request Parameters

Path

2

id

required

The id of the callback to assign

Query

2

operator_id

required

The operator id to assign to the callback

2

department_id

required

The department id to assign to the callback

Response

Schema

{}

payload

The callback assign data

{}

2

department_id

The department id the call is assigned to

A

message

The status message

A

status

The system response status. Will be ok or error

curl

example request

1

curl -X POST -d '{"operator_id":"1234"}'

2

-H "Content-Type: application/json"

3

-H "Authorization: Bearer {{Oauth Token}}"

4

https://developer.livehelpnow.net/api/callback/{{1234567}}/assign

example response

      
        

1

 {

2

   "payload": {

3

     "department_id"

: 1234,

4

     "message"

: "Call assignment successfull"

5

   },

6

   "status": "ok"

7

 }