cURL
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>" } }
Renames a sheet
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" }'
Show Sheet object
{ "message": "Sheet updated successfully", "sheet": { "id": 100, "name": "Kitchen Appliances Q2 2026" } }