---
title: "Update records (bulk)"
method: PUT
path: "/storage/records/updateBulk"
tags: ["Storage - Records"]
---

# Update records (bulk)

`PUT /storage/records/updateBulk`

Update multiple rows in one call. Body: { modelUuid, records: [{ id, data }, ...] }.

## Request body

- object — Shape: { modelUuid, records: [{ id, data }, ...] }. data is merged then id is applied under the model id column slug.
  - `modelUuid` string, uuid, required — Target model.
  - `records` object[], required — Records to update. Up to 1000 per request.
    - `id` string, required — Record identifier; merged into the payload under the model id column slug (overrides the same key in data).
    - `data` object, required — Fields to update for the row.

## Response `200`

Successful response

- object
  - `records` object[], required — Updated records as returned by storage.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `404` — Not found
- `500` — Internal server error

---

[API](https://skmtc.net/getcargo/apis/cargo-api.md) · [All operations](https://skmtc.net/getcargo/apis/cargo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getcargo/cargo-api/revisions/1d5a19e01d83/schema)
