Reference

Endpoint Delete Worklog


Name

delete_worklogs

Description

No description available

Related Tables

Worklogs

Parameters

Parameter Required Options
Name: IssueIdOrKey

Label: IssueIdOrKey

Name: WorklogId

Label: WorklogId

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
Response DT_NTEXT nvarchar(MAX)
If the column you are looking for is missing, consider customizing Jira Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
Id DT_WSTR nvarchar(4000) 4000
Required columns that you need to supply are bolded.

Examples

SSIS

Use Jira Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - Jira
Jira connector can be used to read, write, delete Issues, Users, Worklogs, Comments, Projects, Custom fileds and many other details
Jira
Delete Worklog
Optional Parameters
IssueIdOrKey
WorklogId
Continue On 404 Error (When record not found) False
SSIS API Source - Read from table or endpoint

API Destination

This Endpoint belongs to the Worklogs table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to delete worklog:

API Destination - Jira
Jira connector can be used to read, write, delete Issues, Users, Worklogs, Comments, Projects, Custom fileds and many other details
Jira
Worklogs
Delete
Optional Parameters
IssueIdOrKey
WorklogId
Continue On 404 Error (When record not found) False
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

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

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).