A list of items for the given canned sets
Scope:
operator
id
required
The id of the canned set to get items from
payload
The canned set data
canned_items
The list of canned set items
enabled
True if the canned set is enabled else false
id
The id for the canned sets
message
The message of the canned item
order
The order for the canned set
title
The title of the canned item
status
The system response status. Will be ok or error
curl
example request
1
curl -H "Authorization: Bearer {{Oauth Token}}"
2
https://developer.livehelpnow.net/api/canned_sets/{{123}}/items
example response
1
{
2
"payload": {
3
"canned_items": [{
4
"enabled"
: true,
5
"id"
: 123456,
6
"message"
: "First content for Categories test",
7
"order"
: 1,
8
"title"
: "First Node for Categories test"
9
}],
10
},
11
"status": "ok"
12
}