メインコンテンツへスキップ
POST
/
task
/
_bulk
/
update
Bulk Update Tasks
curl --request POST \
  --url https://local.casebender.com:3000/api/task/_bulk/update \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --header 'X-Api-Secret: <api-key>' \
  --data '
{
  "id": [
    "<string>"
  ],
  "fields": {
    "title": "<string>",
    "description": "<string>",
    "status": "<string>",
    "mandatory": true,
    "assigneeId": "<string>",
    "flagged": true,
    "dueDate": "<string>"
  },
  "options": {
    "selectAll": true,
    "filters": {
      "status": [
        "waiting"
      ],
      "assigneeId": [
        "<string>"
      ],
      "searchKey": "<string>",
      "searchValue": "<string>",
      "caseId": [
        "<string>"
      ]
    }
  }
}
'
{
  "count": 123
}

承認

X-Api-Key
string
header
必須
X-Api-Secret
string
header
必須

ボディ

application/json
id
string[]
必須
fields
object
必須
options
object

レスポンス

Successful response

count
number
必須