Hi,
I just installed curl and I'm trying to create a JIRA issue from cmd but I'm having issues. I altered the example request from Atlassian and used this in cmd:
curl -k -D- -u fred:fred -X POST --data { "fields": { "project": "IT Asset Management" {"key": "TEST599"}, "summary": "REST ye merry gentlemen.", "description": "Creating of an issue using project keys and issue type names using the REST API", "issuetype": {"name": "App:Unknown"}}} -H "Content-Type: application/json" (our JIRA server)/rest/api/2/issue/
This is the error I am getting:
curl error.PNG
What's going on?? Thanks!
You need a single quote around your data. Command should look something like this:
curl -k -D- -u fred:fred -X POST --data '{"fields": { "project... }'
If I try to ping (my JIRA server)/rest/api/2/issue/ I don't get anything. This is the url it says to use on the example Atlassian uses to create an issue with cURL tho..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried single quote and the back-tick and neither worked. I dug around enough and found that all the examples are generally using "--data @FileName.txt" :
curl -u admin:admin -X POST --data @data.txt -H "Content-Type: application/json" http://localhost:8080/jira/rest/api/2/issue/
I tried double-quotes to escape, and even \" and nothing worked with curl. I would highly suggest making the data into a file that can be referenced like above.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.