-
Bug
-
Resolution: Fixed
-
Low
-
None
-
Severity 3 - Minor
-
The example for the endpoint /rest/api/3/search in the Jira Cloud REST API documentation is incomplete:
Indeed, the provided example is the below one:
curl --request GET \ --url 'https://your-domain.atlassian.net/rest/api/3/search' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'
However, the above example is missing to show the actual JQL query (url encoded) to be added after the jql parameter.
The example should be corrected and the JQL parameter should be added to the url. Something like (project = Test Project"):
curl --request GET \ --url 'https://your-domain.atlassian.net/rest/api/3/search?jql=project%20%3D%20"Test%20Project"' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'
- is related to
-
JRACLOUD-70805 The rest/api/3/user endpoint example is missing the parameter
-
- Closed
-
- is duplicated by
-
DXD-118 Failed to load
This issue has been fixed