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

POST

/api/callback/{id}/accept

Accept the specified callback

Scope:

operator

Request Parameters

Path

2

id

required

The id of the callback to accept

Query

2

id

required

The operator id you want to assign to the callback

Response

Schema

{}

payload

The callback accept 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 '{"id":"1234"}'

2

-H "Content-Type: application/json"

3

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

4

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

example response

      
        

1

 {

2

   "payload": {

3

     "department_id"

: 1234,

4

     "message"

: "Call assignment successful"

5

   },

6

   "status": "ok"

7

 }