jira-integrations
List Jira integration connections
Returns detail of all Productboard feature - Jira issue connections for given integration. It also allows to find a connection by Jira issue key or ID.
This API is paginated using cursor-based pagination. The client should follow the links.next link in the response to fetch the next page.
get/jira-integrations/{integrationId}/connections
Path parameters
integrationIdstring uuid required
Example:00000000-0000-0000-0000-000000000001
UUID of the plugin integration.
Query parameters
pageCursorstring
Cursor for pagination. Use the value from links.next to fetch the next page.
issueKeystring
If specified, the resource returns only connection for given Jira issue (if any).
issueIdstring
If specified, the resource returns only connection for given Jira issue (if any).
Response
A paginated list of Jira integration connections
Example response
{
"data": [
{
"id": "00000000-0000-0000-0000-000000000000",
"type": "jiraIntegrationConnection",
"fields": {
"issueKey": "JIRA-123",
"issueId": "123456"
},
"links": {
"self": "https://api.productboard.com/v2/jira-integrations/00000000-0000-0000-0000-000000000000/connections/00000000-0000-0000-0000-000000000000"
}
}
]
}