Skip to main content
POST
/
orgs
/
{org_id}
/
tables
/
{table_id}
/
records
Create a record
curl --request POST \
  --url https://api.useinvent.com/orgs/{org_id}/tables/{table_id}/records \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "values": {},
  "view_id": "<string>",
  "after": "<string>",
  "before": "<string>"
}
'
{
  "id": "<string>",
  "table_id": "<string>",
  "archived": true,
  "position": "<string>",
  "values": [
    {
      "id": "<string>",
      "key": "<string>",
      "value": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.useinvent.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication using your API key

Path Parameters

org_id
string
required

Org ID

table_id
string
required

Table ID

Body

values
object

Map of field key → value. Multi-value fields accept arrays; pass null or [] to clear.

view_id
string

The view to place the record in.

Maximum string length: 128
after
string

The neighbor to sort the record after.

Maximum string length: 1024
before
string

The neighbor to sort the record before.

Maximum string length: 1024

Response

200 - application/json
id
string
required
table_id
string
required
archived
boolean
required

Whether the record is archived.

position
string | null
required

The position of the record in the view.

values
object[]
required

The values of the record.