We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As far as I can see it is not possible to create remote links with this API client, right?
The following JSON posted to "/rest/api/latest/issue/${ISSUE}/remotelink" would create a remote link (Web Link):
{ "object": { "url": "https://github.com/oRastor/jira-client", "title" : "Title of the link" } }
See https://community.atlassian.com/t5/Answers-Developer-Questions/Create-hyperlink-in-Jira-issue-via-REST-API/qaq-p/552251#M89911
The text was updated successfully, but these errors were encountered:
Currently this feature is not supported
Sorry, something went wrong.
You mean, it is not supported by the current JIRA API?
The JIRA API documentation says, that it is supported in JIRA 5.0 or later: https://developer.atlassian.com/jiradev/jira-platform/guides/other/guide-jira-remote-issue-links/jira-rest-api-for-remote-issue-links
I mean, that this library do not support such resources as remote link. Not all requests and not all resources implemented for now.
Requests that not implemented in library can be processed with JiraClient\JiraClient like this:
JiraClient\JiraClient
$response = $client->callPost("/rest/api/latest/issue/{$issueId}/remotelink", [ 'object' => [ "url" => "https://github.com/oRastor/jira-client", "title" => "Title of the link" ] ]);
Maybe later I will make this feature.
OK, that will already help me. Thanks anyway. 🙂
oRastor
No branches or pull requests
As far as I can see it is not possible to create remote links with this API client, right?
The following JSON posted to "/rest/api/latest/issue/${ISSUE}/remotelink" would create a remote link (Web Link):
See https://community.atlassian.com/t5/Answers-Developer-Questions/Create-hyperlink-in-Jira-issue-via-REST-API/qaq-p/552251#M89911
The text was updated successfully, but these errors were encountered: