Tela de Checkout
Use a API do Checkout para gerar uma página de pagamento segura
POST /v2/transaction/checkout
Chamada
curl -v --location --request POST 'https://api-uat.jumppag.com/v2/transaction/checkout' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <Access-Token>' \
--data-raw '{
"customer": {
"id": "58f0c005-3b7d-4c75-81f3-93b9a6fee864",
"name": "Joao Silva",
"email": "[email protected]",
"document": {
"number": "12345678909",
"type": "CPF"
}
},
"transaction": {
"id": "b08e3897-6505-4bb4-81a5-6e3a1d29e277",
"currency": "BRL",
"amount": 100.00,
},
"branch": "YourCompanyOrBranchName",
"country": "BRA",
"notification_url": "https://mysite.com/api/notification",
"redirect_url": "https://mysite.com/success"
}'Detalhes dos parâmetros
customer.id
customer.name
customer.email
customer.document.number
customer.document.type
transaction.id
transaction.currency
transaction.amount
branch
country
payment_method
notification_url
redirecionamento_url
Resposta
Atualizado
Isto foi útil?

