Create an issue
Creates a single issue in a project. Supply at least ProjectKey, IssueTypeName, Summary, and optionally Description and other columns. Use WITH (Output=1) to return the created issue.
INSERT INTO Issues(ProjectKey, IssueTypeName, Summary, Description)
VALUES('SMP', 'Task', 'My ticket inserted through the API', 'A description about an issue')
WITH (Output=1)