getRemoteLinkById method
Retrieve the currently stored Remote Link data for the given ID.
The result will be what is currently stored, ignoring any pending updates or deletes.
Only Connect apps that define the jiraRemoteLinkInfoProvider
module, and
on-premise integrations, can access this resource.
This resource requires the 'READ' scope for Connect apps.
Implementation
Future<dynamic> getRemoteLinkById(String remoteLinkId) async {
return await _client.send(
'get',
'rest/remotelinks/1.0/remotelink/{remoteLinkId}',
pathParameters: {
'remoteLinkId': remoteLinkId,
},
);
}