2017-08-01 12 views

答えて

1

jira-rest-apiを使用していることがわかります。 jira developer docsから、私は、一般的には

{ 
    "fields": { 
     "project": 
     { 
      "key": "TEST" 
     }, 
     "summary": "REST ye merry gentlemen.", 
     "description": "Creating of an issue using project keys and issue type names using the REST API", 
     "issuetype": { 
      "name": "Bug" //You should specify it as Task 
     } 
    } 
} 

、などのデータと

curl -D- -u fred:fred -X POST --data {see below} -H "Content-Type: application/json" http://localhost:8090/rest/api/2/issue/ 

を見ることができ、このpageで説明するように、あなたは最初のメタデータを調べることができます。

関連する問題