Skip to main content
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

Authorization
string
header
required

Enter your Zite API key. Format: Bearer <api_key>

Path Parameters

databaseId
string
required

The unique identifier of the database

tableId
string
required

The unique identifier of the table. You can also use the table name instead of the ID.

Body

application/json
record
object
required

Record data with field names or field IDs as keys and their corresponding values

Example:

Response

Record created successfully

id
string<uuid>
required

Unique UUID identifier for the record

data
object
required

Record data with field IDs as keys

Example:
fields
object
required

Record data with field names as keys

Example:
createdAt
string<date-time>
required

ISO timestamp of when the record was created

updatedAt
string<date-time>
required

ISO timestamp of when the record was last updated

Last modified on April 28, 2026