Skip to main content
POST
/
workspace
/
{workspace_id}
/
table
/
{table_id}
/
content
/
bulk
Create multiple records in a single batch operation
curl --request POST \
  --url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/content/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "items": [
    {
      "name": "test name"
    }
  ],
  "allow_id_field": false
}
'
[
  123
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-data-source
string
default:live

Path Parameters

workspace_id
integer<int64>
required
table_id
integer<int64>
required

Body

items
object
required
allow_id_field
boolean

Response

Success!