Skip to main content
PUT
https://backend.anglera.com
/
sheets
/
{id}
Update Sheet
curl --request PUT \
  --url https://backend.anglera.com/sheets/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Anglera-API-Key: <api-key>' \
  --data '
{
  "name": "<string>"
}
'
{
  "message": "<string>",
  "sheet": {
    "id": 123,
    "name": "<string>"
  }
}
Updates a sheet’s name.

Request

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

Path Parameters

id
integer
required
ID of the sheet to update

Body Parameters

name
string
required
New name for the sheet

Response

message
string
Success message
sheet
object
The updated sheet
Example Response
{
  "message": "Sheet updated successfully",
  "sheet": {
    "id": 100,
    "name": "Kitchen Appliances Q2 2026"
  }
}