cURL
curl --request POST \ --url https://backend.anglera.com/sheets/duplicate \ --header 'Content-Type: application/json' \ --header 'X-Anglera-API-Key: <api-key>' \ --data ' { "sheet_id": "<string>", "name": "<string>" } '
{ "message": "<string>", "sheet": { "id": 123, "name": "<string>", "org_id": "<string>", "num_products": 123, "num_enriched": 123 } }
Creates a copy of an existing sheet with all attributes and validation rules
curl -X POST "https://backend.anglera.com/sheets/duplicate" \ -H "X-Anglera-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "sheet_id": "100", "name": "My Custom Sheet Name" }'
Show Sheet object
{ "message": "Sheet duplicated successfully", "sheet": { "id": 101, "name": "Copy of Kitchen Appliances Q4 2025", "org_id": "4023cd29-175e-48d0-a314-84bf2b82a3ac", "num_products": 0, "num_enriched": 0 } }