Create record (v1)

Creates a record in a specified data table.

The structure of the request payload is a key-value pair of each field. You can specify fields by their UUIDs (dollar-escaped) or names. Fields not listed in the schema are replaced with default values. Extra fields that aren’t included in the schema are ignored.

Path parameters

data_table_idstringRequired

The ID of the data table that contains the record you plan to update. You can use the List data tables endpoint to retrieve data table IDs.

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Response

Success reply
record_idstring or null
The ID of the record created.
created_atstring or null
Timestamp in ISO 8601 format.
documentlist of any or null

Key-value pair for each field you request.

Errors