Skip to main content
POST
/
cases
/
bulk-update
Bulk Update Cases
curl --request POST \
  --url https://api.casexchange.com/api/v1/cases/bulk-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "success": true,
  "data": {
    "fileName": "<string>",
    "totalRows": 123,
    "successful": 123,
    "failed": 123,
    "created": 123,
    "updated": 123,
    "successfulCases": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "status": "<string>",
        "referenceNumber": "<string>",
        "operation": "create"
      }
    ],
    "failedRows": [
      {}
    ]
  }
}
Update multiple cases in a single operation by uploading a CSV file. Useful for syncing case statuses from external systems, updating Salesforce records, or batch status changes.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
file
file
required

Response

Bulk update summary

success
boolean
data
object