ticket_replies
Creates, updates, deletes, gets or lists a ticket_replies
resource.
Overview
Name | ticket_replies |
Type | Resource |
Id | linode.support.ticket_replies |
Fields
The following fields are returned by SELECT
queries:
- get_ticket_replies
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_ticket_replies | select | page , page_size | Returns a collection of replies to a support ticket on your account. Learn more... Learn more... | |
post_ticket_reply | insert | data__description | Adds a reply to an existing support ticket. Learn more... Learn more... |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT
examples
- get_ticket_replies
Returns a collection of replies to a support ticket on your account.
Learn more...
Learn more...
SELECT
data,
page,
pages,
results
FROM linode.support.ticket_replies
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}';
INSERT
examples
- post_ticket_reply
- Manifest
Adds a reply to an existing support ticket.
Learn more...
Learn more...
INSERT INTO linode.support.ticket_replies (
data__description
)
SELECT
'{{ description }}' --required
RETURNING
id,
gravatar_id,
created,
created_by,
description,
from_linode
;
# Description fields are for documentation purposes
- name: ticket_replies
props:
- name: description
value: string
description: >
The content of your reply.