Create an issue

post

/*/issues/issues/v2/issues

The JSON representation that is supplied in the body of the request is used to create the issue. If the request is successful, the body of the response will contain the JSON representation of the created issue.

Request

Body Parameter
The JSON representation of the issue to create.
Root Schema : Issue
Type: object
Nested Schema : attachments
Type: array
Nested Schema : ccs
Type: array
Nested Schema : comments
Type: array
Nested Schema : commits
Type: array
Nested Schema : Component
Type: object
Nested Schema : customFields
Type: object
Nested Schema : duplicates
Type: array
Nested Schema : User
Type: object
Nested Schema : Priority
Type: object
Nested Schema : Product
Type: object
Nested Schema : Release
Type: object
Nested Schema : Resolution
Type: object
Nested Schema : Severity
Type: object
Nested Schema : Sprint
Type: object
Nested Schema : Status
Type: object
Nested Schema : subIssues
Type: array
Nested Schema : tags
Type: array
Nested Schema : timeSpent
Type: array
Nested Schema : Attachment
Type: object
Nested Schema : attachmentData
Type: array
Nested Schema : IssueHandle
Type: object
Nested Schema : Comment
Type: object
Nested Schema : components
Type: array
Nested Schema : releases
Type: array
Nested Schema : releaseTags
Type: array
Nested Schema : ReleaseTag
Type: object
Nested Schema : Tag
Type: object
Nested Schema : TimeSpent
Type: object

Response

200 Response
successful operation
Body
Root Schema : Issue
Type: object
Nested Schema : attachments
Type: array
Nested Schema : ccs
Type: array
Nested Schema : comments
Type: array
Nested Schema : commits
Type: array
Nested Schema : Component
Type: object
Nested Schema : customFields
Type: object
Nested Schema : duplicates
Type: array
Nested Schema : User
Type: object
Nested Schema : Priority
Type: object
Nested Schema : Product
Type: object
Nested Schema : Release
Type: object
Nested Schema : Resolution
Type: object
Nested Schema : Severity
Type: object
Nested Schema : Sprint
Type: object
Nested Schema : Status
Type: object
Nested Schema : subIssues
Type: array
Nested Schema : tags
Type: array
Nested Schema : timeSpent
Type: array
Nested Schema : Attachment
Type: object
Nested Schema : attachmentData
Type: array
Nested Schema : IssueHandle
Type: object
Nested Schema : Comment
Type: object
Nested Schema : components
Type: array
Nested Schema : releases
Type: array
Nested Schema : releaseTags
Type: array
Nested Schema : ReleaseTag
Type: object
Nested Schema : Tag
Type: object
Nested Schema : TimeSpent
Type: object
400 Response
Invalid issue property
Body
Root Schema : RestException
Type: object
Nested Schema : Throwable
Type: object
Nested Schema : stackTrace
Type: array
Nested Schema : suppressed
Type: array
Nested Schema : stackTrace
Type: array
Nested Schema : suppressed
Type: array
Nested Schema : StackTraceElement
Type: object
404 Response
Unknown issue property
Body
Root Schema : RestException
Type: object
Nested Schema : Throwable
Type: object
Nested Schema : stackTrace
Type: array
Nested Schema : suppressed
Type: array
Nested Schema : stackTrace
Type: array
Nested Schema : suppressed
Type: array
Nested Schema : StackTraceElement
Type: object

Examples

The following example shows how to create an Oracle Developer Cloud Service issue by submitting a POST request on the REST resource using cURL.The example uses an input file, issues-new, that contains the complete JSON representation of the issue to be created. For more information about cURL, see Use cURL. For more information about endpoint URL structure, see Send Requests.

curl -i 
-X POST 
-s -H 'Content-type:application/json' -d@issue-new 
http://developer.us.oraclecloud.com/dev-org/rest/dev-org_pubapi_203132/issues/v2/issues

Notice that the command uses the –H parameter to specify the Content-type for the body of the response. This parameter must be specified for all POST and PUT operations.

Example of Response Header

The following shows an example of the response header.

200 Successful Operation
Content-Type: application/json
Date: Thu, 17 Aug 2017 00:26:10 GMT

Example of Response Body

The following example shows the contents of the response body in JSON format,if the request was successful. The entire JSON representation for the newly created issue is returned in a single line. The output has been formatted to improve readability.

{"issue":{
  "links":[
    {"rel":"self",
     "href":"http://developer.us.oraclecloud.com/dev-org-org/rest/dev-org_pubapi_203132/issues/v2/issues/1"},
    {"rel":"canonical",
     "href":"http://developer.us.oraclecloud.com/dev-org/rest/dev-org_pubapi_203132/issues/v2/issues/1"},
    {"rel":"create-form",
     "href":"http://developer.us.oraclecloud.com/dev-org/rest/dev-org_pubapi_203132/issues/v2/issues/create-form"},
    {"rel":"collection",
     "href":"http://developer.us.oraclecloud.com/dev-org/rest/dev-org_pubapi_203132/issues/v2/issues"},
    {"rel":"search-form",
     "href":"http://developer.us.oraclecloud.com/dev-org/rest/dev-org_pubapi_203132/issues/v2/issues/search-form"}
  ],
  "id":1,
  "version":"1498782045181",
  "creationDate":1498782045175,
  "modificationDate":1498782045181,
  "summary":"New Story",
  "description":"",
  "wikiRenderedDescription":"",
  "tags":[],
  "sumOfSubIssuesEstimatedTime":0,
  "remainingTime":0,
  "sumOfSubIssuesRemainingTime":0,
  "sumOfSubIssuesStoryPoints":0,
  "url":"http://developer.us.oraclecloud.com/dev-org/rest/dev-org_pubapi_203132/task/1",
  "type":"Story",
  "externalLinks":[],
  "reporter":{
    "id":1,
    "loginName":"joe@example.com",
    "realname":"Joe",
    "gravatarHash":"68aa64f7d0abfd8929c261f78b60fd27"},
  "ccs":[
    {"id":1,
     "loginName":"joe@example.com",
     "realname":"Joe",
     "gravatarHash":"68aa64f7d0abfd8929c261f78b60fd27"}
   ],
  "severity":{
    "id":4,
    "value":"normal",
    "sortkey":400},
  "status":{
    "id":1,
    "value":"UNCONFIRMED",
    "isActive":true,
    "isOpen":true,
    "sortkey":100},
  "priority":{
    "id":3,
    "value":"Normal",
    "sortkey":300},
  "release":{
    "id":1,
    "value":"---",
    "sortkey":0,
    "product":{
      "id":1}
    },
  "product":{
    "id":1,
    "name":"Default",
    "description":"default product",
    "isActive":true},
  "subIssues":[],
  "timeSpent":[],
  "sumOfSubIssuesTimeSpent":0,
  "attachments":[],
  "duplicates":[],
  "customFields":{
    "iteration":"---"},
  "commits":[],
  "comments":[]
}}