Open banking payment provider using instant bank transfers. The payer authenticates directly with their bank on a Contiant-hosted page, so no card, IBAN, or account data passes through the Mozarto API.Operations: Pay-In ✓ | Pay-Out - | Webhook ✓ Processing: Asynchronous - redirect the payer to a hosted page, then receive settlement by webhook Payment type: Open banking / instant bank transferFields marked with * are required.
Merchant credentials, the beneficiary account, and the payer return URL all live on the PSP configuration, not on the per-transaction request.
Field
Description
clientId*
Contiant OAuth client ID
clientSecret*
Contiant OAuth client secret
siteUrl*
URL the payer returns to after completing or cancelling payment on the Contiant hosted page
merchantName*
Beneficiary merchant name shown to the payer
country
Beneficiary account country
postcode
Beneficiary postal code. Required for EU and UK payments
iban / bic
Beneficiary IBAN and BIC. Required for EU; used for UK when available
accountNumber / sortCode
Beneficiary UK account number and sort code. Used for UK when IBAN and BIC are not set
webhookUrl
Endpoint Mozarto calls with the settlement notification once the payment completes
notificationSecret
Signature secret for Contiant's inbound notifications. Mozarto validates the X-Contiant-Signature header (HMAC-SHA256) on every notification Contiant sends and ignores any that fail. Take it from your Contiant subscription. Stored per brand, encrypted at rest, and masked in the back office. If left blank, Mozarto processes notifications without signature validation (legacy fallback)
The cashier call does not move funds directly. It creates a transaction and returns a paymentUrl. Redirect the payer to that URL to authenticate with their bank on the Contiant hosted page.
Once Contiant reports the payment result, Mozarto sends a POST to your configured webhookUrl. The payload is the same shape for approvals and declines; read transaction_status for the outcome.
Mozarto transaction identifier returned by the Pay-In call
user_id
The payer identifier resolved from the Pay-In request
status
Raw settlement result - success, failed, or pending
transaction_status
Normalized outcome - Approved, Failed, or Pending. Use this for business logic
amount
Settled amount in the transaction currency's major unit
currency
Transaction currency
Contiant reports COMPLETED and SETTLED as successful; FAILED, CANCELLED, REJECTED, and ABANDONED as failed. Any other status keeps the transaction pending.The request carries an Authorization header with a Mozarto-generated signature token. Verify it before applying any balance or state change. See Webhook setup.
Before Mozarto raises the settlement above, it receives the raw notification from Contiant and validates its authenticity. Contiant signs each notification with an X-Contiant-Signature header:
v1 — HMAC-SHA256("<t>|<raw request body>", notificationSecret) in hex
Mozarto recomputes the HMAC using the brand's configured notificationSecret and compares it to v1. Notifications that fail validation are rejected with 401 and left unprocessed — no transaction update, no merchant forward. If no notificationSecret is configured for the brand, validation is skipped and the notification is processed (legacy fallback).
The Pay-In call returns an error when the request cannot be set up. Payment declines are reported later through the settlement webhook with transaction_status: "Failed", not on this call.
HTTP status
Response
When
400
message: "PSP Configuration not found. Please check you psp Configuration"
Contiant credentials, siteUrl, merchantName, or the beneficiary account for the payer's country are missing from the back office configuration
500
message: "Internal server error" with the raw failure in data
Contiant authentication or payment creation failed
For the full list of errorCode values and retryability guidance, see Errors.