curl --request POST \
--url https://api.getcargo.io/v1/storage/records/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"data": {}
}
'{
"record": {}
}Insert a single model row. Body: where data is the row fields.
curl --request POST \
--url https://api.getcargo.io/v1/storage/records/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"modelUuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"data": {}
}
'{
"record": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Inserted record as returned by storage.
Show child attributes
Was this page helpful?