Skip to content

Instantly share code, notes, and snippets.

@mikesorae
Last active December 24, 2015 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikesorae/6805998 to your computer and use it in GitHub Desktop.
Save mikesorae/6805998 to your computer and use it in GitHub Desktop.
create a ticket from redmine rest api
POST /redmine/issues?key=${API_KEY}
Content-Type: application/json
{
"issue":{
"project_id":${PROJECT_ID},
"subject":${SUBJECT},
"description":${DESCRIPTION},
"tracker_id":${TRACKER_ID}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment