Skip to main content
POST
/
api
/
assets
/
bulk-update
Update metadata on multiple assets
curl --request POST \
  --url https://api.example.com/api/assets/bulk-update \
  --header 'Content-Type: application/json' \
  --data '
{
  "updates": [
    {
      "id": "<string>",
      "change": {
        "description": "<string>",
        "latitude": 123,
        "longitude": 123,
        "original_datetime": "2023-11-07T05:31:56Z"
      }
    }
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.gumnut.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Bulk-update request body — heterogeneous per-asset changes in one call.

updates
BulkUpdateAssetItem · object[]
required

List of per-asset updates. Each item carries the target asset id and the change to apply to it; different fields can be changed on different assets in the same request. Up to 100 items per request.

Required array length: 1 - 100 elements

Response

Successful Response

Acknowledgment body for POST /api/assets/bulk-update.

Empty by design; exists so MCP tools generated from this endpoint have a real outputSchema. Distinct from DeletionResponse because that name is purpose-scoped to destructive operations — reusing it on a non-destructive endpoint would misname the wire shape in OpenAPI and generated SDKs.