For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sheet API

Create Sheet

post

Creates a new sheet importer.

Authorizations
x-csvbox-api-keystringRequired
x-csvbox-secret-api-keystringRequired
Header parameters
AcceptstringRequired

Must be application/json

Example: application/json
Content-TypestringRequired

Content type must be application/json

Example: application/json
Body
titlestringRequiredExample: Customer Import
Responses
201

Sheet Created Successfully

application/json
statusstringOptionalExample: Sheet Created Successfully
post/1.1/sheet

Update Sheet

put

Fully updates an existing sheet. All provided fields will overwrite existing values.

Authorizations
x-csvbox-api-keystringRequired
x-csvbox-secret-api-keystringRequired
Path parameters
sheet_license_keystringRequired

Sheet License Key

Header parameters
AcceptstringRequired

Must be application/json

Example: application/json
Content-TypestringRequired

Content type must be application/json

Example: application/json
Body
titlestringOptionalExample: Updated Sheet
Responses
200

Sheet Updated Successfully

application/json
statusstringOptionalExample: Sheet Created Successfully
put/1.1/sheet/{sheet_license_key}

Partially Update Sheet

patch

Partially updates an existing sheet. Only provided fields will be updated. Fields not included will remain unchanged.

Authorizations
x-csvbox-api-keystringRequired
x-csvbox-secret-api-keystringRequired
Path parameters
sheet_license_keystringRequired

Sheet License Key

Header parameters
AcceptstringRequired

Must be application/json

Example: application/json
Content-TypestringRequired

Content type must be application/json

Example: application/json
Body
titlestringOptionalExample: Updated Sheet
Responses
200

Sheet Partially Updated Successfully

application/json
statusstringOptionalExample: Sheet Created Successfully
patch/1.1/sheet/{sheet_license_key}

Last updated