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

GET

/api/callback_filters

Get a list of callback filters.

Scope:

operator

Request Parameters

Query

2

operator_id

required

The operator id associated with the filters

Response

Schema

{}

payload

The filter data

[]

{}

2

filter_id

The id of the filter

A

filter_name

The custom name of filter

is_current

True if the filter is the current filter for the operator else false

A

status

The system response status. Will be ok or error

curl

PHP

C#

Ruby

Java

example request

1

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

2

https://developer.livehelpnow.net/api/callback_filters\?operator_id\=1234

example response

      
        

1

 {

2

   "payload": [{

3

     "filter_id"

: 1234,

4

     "filter_name"

: "default",

5

     "is_current"

: true

6

   }],

7

   "status": "ok"

8

 }