I setup a free cloud account that I'm trying to use to learn Jira's REST API. I have not modified any of the Jira settings and I'm trying to create my first test issue by POST'ing the following to https://valhala.atlassian.net/rest/api/2/issue:
{
"fields":{
"project":{"id":"10000"},
"summary":"Bot bug report on behalf of some name: some email",
"issuetype":{"id":"10001"}
}
} I keep getting 400 error and no response text explaining why. My headers are:
Accept: application/json
Content-Type: application/json
Authorization: Basic base64encoded_email:token
I'm at my wits end. Please help. Thank you.