MyBank
DC Integration option
Payment
Payment Flow
- The customer initiates the payment on the merchant's website.
- The merchant sends a payment request to PaySage.io.
- PaySage.io responds with a link to the payment page.
- The merchant redirects the customer to the payment page.
- The customer completes the payment.
- PaySage.io sends a webhook notification with the payment status to the merchant.
Info
This integration option supports only EUR
currency.
Request
Send a payment request with the following additional data:
|
Request example
{
"request": {
"amount": 50,
"currency": "EUR",
"description": "description",
"test": true,
"return_url": "https://return.com",
"language": "en",
"customer": {
"first_name": "John",
"last_name": "Doe",
"country": "IT"
},
"method": {
"type": "my_bank"
}
}
}
Response
Redirect your customer to the URL received as the value of the form.action
parameter.
Response example
{
"transaction": {
"uid": "86ff678d-d1d6-40ea-a256-993c1f2e8eef",
"type": "payment",
"status": "pending",
"amount": 50,
"currency": "EUR",
"description": "description",
"created_at": "2025-09-18T07:21:22Z",
"updated_at": "2025-09-18T07:21:23Z",
"method_type": "my_bank",
"receipt_url": "https://backoffice.paysage.io/customer/transactions/86ff678d-d1d6-40ea-a256-993c1f2e8eef/2ed69188076c02f135787ae046584a71f7fdbb2d9519cd8f207bf5e264425b9e?language=en",
"payment": {
"status": "pending",
"gateway_id": 5220,
"ref_id": "8005bd76c486062fc0d3",
"message": "Transaction was initialized."
},
"my_bank": {
"type": "my_bank"
},
"customer": {
"country": "IT",
"last_name": "Doe",
"first_name": "John",
"email": null,
"ip": null
},
"manually_corrected_at": null,
"version": 1,
"message": "Transaction was initialized.",
"test": true,
"language": "en",
"billing_address": {
"country": "IT",
"last_name": "Doe",
"first_name": "John"
},
"additional_data": {
"payment_method": {
"type": "alternative"
}
},
"gateway": {
"iframe": false
},
"form": {
"action": "link_to_payment_page",
"fields": [],
"method": "GET"
}
}
}