/api/issues/{projectname} with form data containing required issue_title, issue_text, created_by, and optional assigned_to and status_text./api/issues/{projectname} with an id and any fields in the object with a value to update said object. Returned will be 'successfully updated' or 'could not update'. This should always update updated_on. If no fields are sent return 'no update field(s) sent'./api/issues/{projectname} with an id to completely delete an issue. If no id is sent return 'missing id', success: 'successfully deleted', failed: 'could not delete'./api/issues/{projectname} for an array of all issues on that specific project with all the information for each issue as was returned when posted./api/issues/{project}?open=false). I can pass along as many fields and values as I want./api/issues/{project}/api/issues/{project}?open=true&assigned_to=Joe/api/issues/apitest
[{"id":"5871dda29faedc3491ff93bb","issue_title":"Fix error in posting data","issue_text":"When we post data it has an error.","created_on":"2017-01-08T06:35:14.240Z","updated_on":"2017-01-08T06:35:14.240Z","created_by":"Joe","assigned_to":"Joe","open":true,"status_text":"In QA"},...]