Delete Worklog
Name
delete_worklogs
Description
Related Tables
Parameters
Parameter | Label | Required | Options | Description |
---|---|---|---|---|
IssueIdOrKey | IssueIdOrKey | NO | ||
WorklogId | WorklogId | NO |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Response |
DT_NTEXT
|
nvarchar(MAX)
|
False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
Examples
SSIS
Use Jira Connector in API Source component to read data or in API Destination component to read/write data:
Delete rows from Worklogs table using API Destination
This Endpoint belongs to Worklogs table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

ODBC application
Use these SQL queries in your ODBC application data source:
Delete worklog
SELECT * FROM delete_worklogs
DELETE Worklog
Deletes a single worklog of an issue
DELETE FROM Worklogs
WITH (IssueIdOrKey='10020', WorklogId='123465', OUTPUT=1, ContinueOn404Error=0)
delete_worklogs
endpoint belongs to
Worklogs
table(s), and can therefore be used via those table(s).
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Delete worklog
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM delete_worklogs';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
DELETE Worklog
Deletes a single worklog of an issue
DECLARE @MyQuery NVARCHAR(MAX) = 'DELETE FROM Worklogs
WITH (IssueIdOrKey=''10020'', WorklogId=''123465'', OUTPUT=1, ContinueOn404Error=0)';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
delete_worklogs
endpoint belongs to
Worklogs
table(s), and can therefore be used via those table(s).