Resgata a recompensa de um cartão fidelidade completo
cURL
curl --request POST \ --url https://api.example.com/loyalty-cards/claim-reward \ --header 'Content-Type: application/json' \ --data ' { "card_id": "<string>" } '
{ "success": true, "redemption_code": "FIDELIDADE-X1Y2Z3", "reward": "1 Pizza Grande Grátis", "expires_at": "2026-02-21T23:59:59Z" }
curl -X POST "https://api.indiqai.com/api/v1/loyalty-cards/claim-reward" \ -H "Authorization: Bearer <token>" \ -H "Content-Type: application/json" \ -d '{ "card_id": "card_001" }'
Was this page helpful?