/
Bulk associations: GET /external/api/associations
Bulk associations: GET /external/api/associations
Endpoint: GET /external/api/associations?jiraIssueId={}
Description
Retrieves all associations with Salesforce records for a specified Jira issue.
Query parameters
jiraIssueId
(string, required): The Jira issue ID.
Example
GET /external/api/associations?jiraIssueId=11816
Response parameters
jiraIssueId
(string, required): the Jira issue ID is the unique identifier of the Jira issue you want to associate.son
(string, required): Salesforce object name, for example,Case
,Account
,Contact
.soid
(string, required): Salesforce object ID for the specific record associated with the Jira issue.viewOnly
(boolean, optional):true
for a view-only association.autoPush
(boolean, optional):true
for automatic data push from Jira to Salesforce.autoPull
(boolean, optional):true
for automatic data pull from Jira to Salesforce.
Example response
{
"data": [
{
"jiraIssueId": "11816",
"son": "Case",
"soid": "500J80000019IF9IAM",
"viewOnly": false,
"autoPush": false,
"autoPull": false
}
],
"message": "Associations fetched successfully",
"success": true
}
Related pages
, multiple selections available,
Related content
Bulk associations: POST /external/api/associations
Bulk associations: POST /external/api/associations
More like this
Associate API: POST /external/api/association
Associate API: POST /external/api/association
More like this
[Internal] How to bulk associate
[Internal] How to bulk associate
More like this
Associate, push, and pull actions with REST API
Associate, push, and pull actions with REST API
Read with this
API reference
API reference
Read with this
Push API: POST /external/api/push/project
Push API: POST /external/api/push/project
Read with this