Delete Project
Name
delete_project
Description
Related Tables
Parameters
Parameter | Label | Required | Options | Description |
---|---|---|---|---|
ProjectIdOrKey | ProjectIdOrKey | NO | Project ID or Key, uniquely representing a project | |
EnableUndo | EnableUndo | 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 Projects table using API Destination
This Endpoint belongs to Projects 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 project
SELECT * FROM delete_project
DELETE Project
Deletes a single project
DELETE FROM Projects
WITH (ProjectIdOrKey = '10020', Output=1, ContinueOn404Error=0)
delete_project
endpoint belongs to
Projects
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 project
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM delete_project';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
DELETE Project
Deletes a single project
DECLARE @MyQuery NVARCHAR(MAX) = 'DELETE FROM Projects
WITH (ProjectIdOrKey = ''10020'', Output=1, ContinueOn404Error=0)';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
delete_project
endpoint belongs to
Projects
table(s), and can therefore be used via those table(s).