Skip to main content
POST
/
api
/
v1
/
records
/
{collection}
Create Record
curl --request POST \
  --url https://api.example.com/api/v1/records/{collection} \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "id": "<string>",
  "account_id": "<string>",
  "created_at": "<string>",
  "created_by": "<string>",
  "updated_at": "<string>",
  "updated_by": "<string>",
  "account_name": "<string>"
}

Headers

authorization
string | null

Path Parameters

collection
string
required

Body

application/json

The body is of type Data · object.

Response

Successful Response

Response for a created or retrieved record.

Contains all system fields plus user-defined fields.

id
string
required

Record ID (UUID)

account_id
string
required

Account ID the record belongs to

created_at
string
required

ISO 8601 timestamp when record was created

created_by
string
required

User ID who created the record

updated_at
string
required

ISO 8601 timestamp when record was last updated

updated_by
string
required

User ID who last updated the record

account_name
string | null

Display name for the account (optional)