Skip to main content
POST
https://backend.anglera.com
/
sheets
Create Sheet
curl --request POST \
  --url https://backend.anglera.com/sheets \
  --header 'Content-Type: application/json' \
  --header 'X-Anglera-API-Key: <api-key>' \
  --data '
{
  "name": "<string>"
}
'
{
  "message": "<string>",
  "sheet": {
    "id": 123,
    "name": "<string>"
  }
}
Creates a new empty sheet in your organization.

Request

curl -X POST "https://backend.anglera.com/sheets" \
  -H "X-Anglera-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Kitchen Appliances Q1 2026"
  }'

Body Parameters

name
string
required
Name for the new sheet

Response

message
string
Success message
sheet
object
The newly created sheet
Example Response
{
  "message": "Sheet created successfully",
  "sheet": {
    "id": 102,
    "name": "Kitchen Appliances Q1 2026"
  }
}
New sheets are created empty with no attributes or products. Use Create Attribute to add attributes, or Duplicate Sheet to copy an existing sheet’s configuration.