BlazeSheets

Create a row

POST
/v1/{apiId}

Appends a row when the API grants create. Use $sheet to select a worksheet tab (defaults to the first sheet). API-key APIs accept X-API-Key or Authorization: Bearer. When create CAPTCHA is enabled, send a Turnstile token in cf-turnstile-response or captchaToken. Domain, CORS, and rate-limit policies are enforced.

X-API-Key<token>

BlazeSheets API key used to access a protected public API.

In: header

Path Parameters

apiId*string
Formatuuid

Query Parameters

$sheet?string

Worksheet tab name (case-sensitive). Defaults to the first sheet when omitted.

Length1 <= length

Header Parameters

cf-turnstile-response?string

Required when CAPTCHA is enabled for this operation.

Request Body

application/json

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/497f6eca-6276-4993-bfeb-53cbbbba6f08" \  -H "Content-Type: application/json" \  -d '{    "property1": "string",    "property2": "string"  }'
{  "created": 0,  "rowNumber": 0,  "data": {    "property1": "string",    "property2": "string"  }}