curl --request DELETE \
--url https://api.getcargo.io/v1/storage/records/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "<string>"
}
'{
"reason": "<string>"
}Remove a single row. Body: .
curl --request DELETE \
--url https://api.getcargo.io/v1/storage/records/remove \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"id": "<string>"
}
'{
"reason": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Error response body schema (success is 204 with no body).
Failure reason from record.remove.
Was this page helpful?