Get a list of callback filters.
Scope:
operator
operator_id
required
The operator id associated with the filters
payload
The filter data
filter_id
The id of the filter
filter_name
The custom name of filter
is_current
True if the filter is the current filter for the operator else false
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
}