Bizum

Bizum logo
This payment method is currently on a supervised rollout phase. Please contact your Technical Account Manager if you are interested by Bizum.
Bizum Payment Method – HiPay

Bizum is a leading payment solution in Spain, offering secure redirection payments via the customer’s banking app. Users require an active bank account linked to Bizum and must validate transactions within their mobile banking application.

PRESENTATION

BrandBizum
Payment FlowPush notification in banking app
IntegrationHosted Payments / Hosted Page / Order API
Product Codebizum
CountrySpain 🇪🇸
CurrencyEUR
Minimum amount0.50
Maximum amountDefined by the customer’s bank
3DSNo
AuthenticationVia push notification in banking app
Refund / Dispute / Chargeback
  • Refund possible up to 13 months
  • Dispute: 15-day response
  • Chargeback fees applied per HiPay policy

ESSENTIAL INFORMATION

USER EXPERIENCE

⚠️ The customer must have an active Bizum account enabled in their banking app. Steps:

  1. Customer selects Bizum on the merchant site.
  2. HiPay prepares the transaction.
  3. Customer receives a push notification via their banking app.
  4. Customer authenticates and validates the payment (max duration: 5 min).
  5. Bank sends the status to HiPay.
  6. HiPay notifies the merchant and confirms transaction to the customer.

SECURITY AND COMPATIBILITY

Transactions are authenticated via the customer’s banking app, complying with security standards without storing sensitive data. Compatible across browsers and mobile devices.

CONFIGURATION AND COMPLIANCE

Ensure HiPay account is correctly configured. Only EUR transactions are supported. Use Redirect Pages Requirements.

INTEGRATION

ENDPOINTS

EnvironmentURL
Stagehttps://stage-secure-gateway.hipay-tpp.com/rest/v1/order
Productionhttps://secure-gateway.hipay-tpp.com/rest/v1/order

MANDATORY PARAMETERS

ParameterDescription / Example
payment_productbizum
transaction_id1234567890
amount10.00
currencyEUR
firstnameCarlos
lastnameGarcía
phone+34666123456
countryES
accept_urlhttps://merchant-website.com/accept

EXAMPLE cURL REQUEST

curl --location 'https://stage-secure-gateway.hipay-tpp.com/rest/v1/order' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: ******' \
  --data-raw '{
    "operation": {
      "amount": "10.00",
      "currency": "EUR",
      "transaction_id": "1234567890"
    },
    "payment_mean": {
      "payment_product": "bizum",
      "country": "ES",
      "language": "es_ES",
      "accept_url": "https://merchant-website.com/accept",
      "customer_info": {
        "firstname": "Carlos",
        "lastname": "García",
        "email": "[email protected]",
        "phone": "+34666123456",
        "street": "Calle Mayor 15",
        "zipcode": "28013",
        "city": "Madrid",
        "state": "Madrid",
        "country": "ES"
      }
    }
  }      

EXAMPLE RESPONSE

{
  "acquirer_response_code": 200,
  "description_short": "Success",
  "provider_transaction_id": "1234567890",
  "acquirer_transaction_id": "1234567890",
  "redirection_url": "https://sandbox-redirect.example.com/?redirection_token=**********",
  "code": 100,
  "status": 201000,
  "authentication_data": {
    "redirectSecret": "**********"
  }
}

TRANSACTION STATUSES

StatusDescription
pendingTransaction in progress, customer redirected
acceptedPayment confirmed by the bank
refusedTransaction refused by the bank
cancelledCustomer cancelled the transaction
errorTechnical error

Best practices for Bizum integration

  • Verify that the phone number is in international format
  • Set a client-side timeout corresponding to the maximum validation duration (5 min)
  • Use server-to-server notifications to track status changes in real time
  • Test in the Stage environment before production
  • Handle refunds within the allowed window
  • Monitor disputes and respond within 15 calendar days with appropriate supporting documents
  • Track chargebacks and account for associated fees
  • Ensure the customer has an active Bizum account and their banking app installed
  • Check error codes and technical messages (general): HiPay Error Messages