curl --request PUT \
--url https://api.getcargo.io/v1/storage/records/updateBulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"records": [
{
"id": "<string>",
"data": {}
}
]
}
'{
"records": [
{}
]
}curl --request PUT \
--url https://api.getcargo.io/v1/storage/records/updateBulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"records": [
{
"id": "<string>",
"data": {}
}
]
}
'{
"records": [
{}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.getcargo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Shape: { modelUuid, records: [{ id, data }, ...] }. data is merged then id is applied under the model id column slug.
Successful response
Updated records as returned by storage.
Show child attributes
Was this page helpful?