cURL
curl --request POST \ --url https://backend.anglera.com/products/validate \ --header 'Content-Type: application/json' \ --header 'X-Anglera-API-Key: <api-key>' \ --data ' { "product_id": 123 } '
{ "message": "<string>", "data": { "product_id": 123, "sheet_id": "<string>", "status": "<string>" } }
Queues a product for validation using rules defined on the sheet
curl -X POST "https://backend.anglera.com/products/validate" \ -H "X-Anglera-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{ "product_id": 8231 }'
Show Data object
QUEUED
{ "message": "Product queued for validation", "data": { "product_id": 8231, "sheet_id": "100", "status": "QUEUED" } }
400
product_id
401
404
500