Sheet Selection
Choose a worksheet tab with the $sheet query parameter.
Use the $sheet query parameter to target a specific worksheet tab. The name is case-sensitive. When omitted, BlazeSheets uses the first sheet in the workbook.
curl -X GET 'https://api.blazesheets.com/v1/<api-id>?$sheet=Customers'Works on all public operations:
| Operation | Example |
|---|---|
| Read | GET /v1/:apiId?$sheet=Sheet1 |
| Create | POST /v1/:apiId?$sheet=Orders |
| Update | PUT /v1/:apiId/1?$sheet=Orders |
| Delete | DELETE /v1/:apiId/1?$sheet=Orders |
| Calculate | POST /v1/:apiId/calculate?$sheet=Model |
If the named sheet does not exist, the API returns an error.