JiraLinks
View and create links between your Jira and Zendesk instances.
Table Specific Information
Select
The following queries are processed server side while other filters are processed client side within the 本製品.SELECT * FROM JiraLinks WHERE Id = 123 SELECT * FROM JiraLinks WHERE TicketId = 123 SELECT * FROM JiraLinks WHERE IssueId = 123
You can turn off the client-side execution of the query by setting SupportEnhancedSQL to false in which case any other search criteria will be ignored and an unfiltered response will be returned.
Insert
The Name and Subdomain fields are required to insert. Allowed for admins.
INSERT INTO JiraLinks (TicketId, IssueId, IssueKey) VALUES (1, 1, 'TP-1')
Delete
You must specify the Id of the automation to delete it. Allowed for agents.
DELETE FROM JiraLinks WHERE Id = 123
Columns
Name | Type | ReadOnly | References | Description |
Id [KEY] | Integer | True |
Automatically assigned when the link is created. | |
TicketId | Integer | False |
Tickets.Id |
The id of the Zendesk ticket. |
IssueId | Integer | False |
The id of the Jira issue. | |
IssueKey | String | False |
The key for the Jira issue. | |
CreatedAt | Datetime | True |
The time at which the link was created. | |
UpdatedAt | Datetime | True |
The time at which the link was last updated. |