Records
The records route provides a flexible and powerful way to create, retrieve, update, and delete records within your app. The route is designed to be resource-oriented and follows standard HTTP verbs.
Access token required for private collections (available on the specific collection's page)
ID of the collection to create the record in
JSON object data to store in the record
{"users":[{"id":1,"email":"[email protected]"}]}Whether to include metadata in the response
trueRecord created successfully
Unauthorized
Insufficient credit or access denied
Collection not found
Access token required for private collections (available on the specific collection's page)
Unique identifier of the record
Whether to include metadata in the response
trueSpecific version of the record to retrieve
Record retrieved successfully
Unauthorized
Insufficient credit or access denied
Record not found
Access token required for private collections (available on the specific collection's page)
Unique identifier of the record
JSON object data to store in the record
{"users":[{"id":2,"email":"[email protected]"}]}Whether to include metadata in the response
Record created/updated successfully
Unauthorized
Insufficient credit or access denied
Access token required for private collections (available on the specific collection's page)
Unique identifier of the record
Record deleted successfully
No content
Unauthorized
Insufficient credit or access denied
Record not found
No content
Access token required for private collections (available on the specific collection's page)
Unique identifier of the record
JSON object data to update in the record
{"users":[{"id":1,"email":"[email protected]","firstName":"Charles"}]}Whether to include metadata in the response
Record updated successfully
Unauthorized
Insufficient credit or access denied
Last updated