タスクの作成
post
/tasks
新規タスクを作成し、タスクIDを返します。
リクエスト
サポートされているメディア・タイプ
- application/json
- application/xml
本文パラメータは、title、startDate、dueDate, priority、taskDefinitionId、routingSlipです。routingSlipのパラメータは、routingType、resourcesです。resourcesのパラメータは、value、identityTypeです。
ルート・スキーマ: schema
リクエストの例(application/json)
{
"title":"This is a test Task Using Rest API",
"startDate":"2013-09-05 03:16:19",
"dueDate":"2013-09-07 03:16:19",
"priority":3,
"taskDefinitionId":"default/EURent!1.0/HandoverCar",
"routingSlip":{
"routingType":"SIMPLE",
"resources":[
{
"value":"jcooper",
"identityType":"USER"
},
{
"value":"jstein",
"identityType":"USER"
}
]
}
}
レスポンス
サポートされているメディア・タイプ
- application/json
- application/xml
200レスポンス
成功
ルート・スキーマ: schema
レスポンスの例(application/json)
{
"rel":"Task 200002 is created.",
"href":"http://example.com/bpm/api/3.0/tasks/200002"
}