Skip to main content
POST
/
orgs
/
{org_id}
/
tables
/
{table_id}
/
records
/
bulk
Bulk record operations
curl --request POST \
  --url https://api.useinvent.com/orgs/{org_id}/tables/{table_id}/records/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "create": [
    {
      "values": {},
      "view_id": "<string>",
      "after": "<string>",
      "before": "<string>"
    }
  ],
  "patch": [
    {
      "id": "<string>",
      "values": {},
      "archived": true
    }
  ],
  "delete": [
    "<string>"
  ]
}
'
{
  "created": 123,
  "updated": 123,
  "deleted": 123
}

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

create
object[]
patch
object[]
delete
string[]
Maximum string length: 128

Response

200 - application/json
created
number
required
updated
number
required
deleted
number
required