Read Projects
Name
get_projects
Description
Related Tables
Parameters
Parameter | Label | Required | Options | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
MaxResults | MaxResults | NO |
|
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_I8
|
bigint
|
False |
||
Key |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
Name |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
ProjectCategoryId |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
ProjectCategoryName |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
ProjectCategoryDescription |
DT_WSTR
|
nvarchar(150)
|
150 | False |
|
ProjectCategorySelf |
DT_WSTR
|
nvarchar(150)
|
150 | False |
|
Simplified |
DT_BOOL
|
bit
|
False |
||
Style |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
InsightTotalIssueCount |
DT_I8
|
bigint
|
False |
||
InsightLastIssueUpdateTime |
DT_DBTIMESTAMP
|
datetime
|
False |
||
AvatarUrls48x48 |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
AvatarUrls24x24 |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
AvatarUrls16x16 |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
AvatarUrls32x32 |
DT_WSTR
|
nvarchar(500)
|
500 | False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use Jira Connector in API Source component to read data or in API Destination component to read/write data:
Read 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:
Read projects
SELECT * FROM get_projects
List projects
Lists all available projects
SELECT * FROM Projects
get_projects
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:
Read projects
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_projects';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
List projects
Lists all available projects
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Projects';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
get_projects
endpoint belongs to
Projects
table(s), and can therefore be used via those table(s).