curl --location 'https://api-uat.kushkipagos.com/smartlink/v1/webcheckout' \
--header 'Private-Merchant-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"kind": "webcheckout",
"contactDetail": {
"email": "tucliente@test.com",
"name": "Tu cliente"
},
"redirectURL": "https://www.tucomercio.com",
"products": [
{
"description": "Tenis",
"name": "trekking pro",
"quantity": 20,
"unitPrice": 1000
}
],
"paymentConfig": {
"amount": {
"subtotalIva0": 10,
"currency": "MXN",
"iva": 2,
"subtotalIva": 2
},
"paymentMethod": [
"credit-card",
"cash",
"transfer"
]
},
"additionalInformation": {}
}'