Bookmarks
Returns bookmarks associated with tickets.
Table-Specific Information
Select
The following query is processed server-side while other filters are processed client-side within the provider.SELECT * FROM Bookmarks
Insert
The TicketId field is required to insert. This operation is allowed for logged-in users with the "agents" role.
INSERT INTO Bookmarks (TicketId) VALUES ('4')
Delete
You must specify the Id of the bookmark to delete it. This operation is allowed for logged-in users with the "agents" role.
DELETE FROM Bookmarks WHERE Id = '19152874442641'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
The Id automatically assigned when the bookmark is created. | |
| Ticket | String | True |
The ticket object. | |
| url | String | True |
The API URL of this bookmark. | |
| CreatedAt | Datetime | True |
The date and time when the bookmark was created. | |
| TicketId | Integer | False |
Tickets.Id |
The Id of the ticket to bookmark. |