Read Application Roles
Name
get_applicationroles
Description
Related Tables
Parameters
Parameter | Label | Required | Options | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no parameters |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Key |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
Name |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
Groups |
DT_WSTR
|
nvarchar(2000)
|
2000 | False |
|
GroupDetails |
DT_NTEXT
|
nvarchar(MAX)
|
False |
||
DefaultGroups |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
DefaultGroupsDetails |
DT_NTEXT
|
nvarchar(MAX)
|
False |
||
SelectedByDefault |
DT_BOOL
|
bit
|
False |
||
Defined |
DT_BOOL
|
bit
|
False |
||
NumberOfSeats |
DT_I4
|
int
|
False |
||
RemainingSeats |
DT_I4
|
int
|
False |
||
UserCount |
DT_I4
|
int
|
False |
||
UserCountDescription |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
HasUnlimitedSeats |
DT_BOOL
|
bit
|
False |
||
Platform |
DT_BOOL
|
bit
|
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 ApplicationRoles table using API Destination
This Endpoint belongs to ApplicationRoles 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 application roles
SELECT * FROM get_applicationroles
get_applicationroles
endpoint belongs to
ApplicationRoles
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 application roles
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_applicationroles';
EXEC (@MyQuery) AT [LS_TO_JIRA_IN_GATEWAY];
get_applicationroles
endpoint belongs to
ApplicationRoles
table(s), and can therefore be used via those table(s).