cURL
curl --request POST \ --url 'https://api.proposales.com/v3/content?action=restore' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "variation_ids": [ 123 ] }'
{ "data": { "restored_count": 123, "product_ids": [ 123 ], "message": "<string>" } }
Restore multiple archived content items at once.
{ "variation_ids": [123, 456, 789] }
Show properties
{ "data": { "restored_count": 3, "product_ids": [123, 456, 789], "message": "Products restored successfully" } }