Create record
Records
Create Record
Creates a new record in a table using either table ID or table name.
POST
Create record
Creates a new record in a table with the provided field data using either the table ID or table name.
Use field names or field IDs as keys and field values as data (e.g.,
"Email": "user@example.com" or "fwtJyga6dso": "user@example.com")Authorizations
Enter your Zite API key. Format: Bearer <api_key>
Path Parameters
The unique identifier of the database
The unique identifier of the table. You can also use the table name instead of the ID.
Body
application/json
Record data with field names or field IDs as keys and their corresponding values
Example:
{
"Name": "John Doe",
"Email": "john@example.com",
"Priority": "high"
}Response
Record created successfully
Unique UUID identifier for the record
Record data with field IDs as keys
Example:
{
"fwtJyga6dso": "John Doe",
"k8mNp2xQ9rL": "john.doe@newcompany.com",
"vB3zXc7Hf2w": "low"
}Record data with field names as keys
Example:
{
"Name": "John Doe",
"Email": "john.doe@newcompany.com",
"Priority": "low"
}ISO timestamp of when the record was created
ISO timestamp of when the record was last updated
Last modified on April 28, 2026