Intelligent search powered by OpenAIÂ
Validate Wallet Connect coupon
POST
Products that use it:
Request's parameters
HEADER
x-payer-token
Token associated to the potential payer who will use the discount. For example - e9449535fe074e0e8ff4f2055f604e51.string
REQUIRED
BODY
id
Unique combination of letters and numbers that stands for the coupon code. For example - BLACKFRIDAY20.string
Response parameters
status
Indicates the coupon's status post-validation. Reflects if it's "success", "pending", or "invalid".string
description
A brief overview of the validated coupon's characteristics. For example: 30% discount coupon for Black Friday.string
legal_terms
URL directing to the specific legal terms associated with the coupon campaign. For example - https://www.mercadopago.com.ar/campaigns/terms-and-conditions/123456.string
detail
This object offers an in-depth view of advanced payments coming from sellers that have a prior Wallet Connect association.object
Errors
400Error encountered during the validation process.
400
Bad-Request - Invalid coupon_id.
400
Bad-Request - Invalid Payer Token.
500Error resulting from internal server issues.
500
Internal server error.
Request
curl -X POST \
'https://api.mercadopago.com/v2/wallet_connect/coupons'\
-H 'Content-Type: application/json' \
-H 'x-payer-token: <PAYER_TOKEN>' \
-H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
-d '{
"id": "BLACKFRIDAY20"
}'
Sample answer
{
"status": "success",
"description": "Cupom de desconto de 30% para Black Friday.",
"legal_terms": "https://www.mercadopago.com.ar/campaigns/terms-and-conditions/123456",
"detail": {
"value": 10,
"type": "percent",
"cap": 100,
"min_payment_amount": 100,
"max_payment_amount": 10000
}
}