Payment Initiation Service
Payment Service API Documentation
Payment Service API - Detailed Documentation
The Payment Service API enables seamless and secure payment processing through open banking. It provides a redirect URL for hosted payment processing, ensuring compliance with banking regulations and providing a streamlined user experience.
API Playground:
You can try the initiate payment endpoint here.
Key Features
-
Redirection Handling: The returned redirect URL should not be embedded in an iframe or an embedded WebView. Instead, a proper browser redirect should be used.
-
Customization: The payment page can be customized in terms of UI/UX, so redirection is not an issue.
-
Webhooks: Webhooks can be called for by our service if required for more complex operations. You will be able to specify your webhook URL to us at the point when we onboard and set you up for the service. We can customize the flows and reduce the number of calls made to the API by enabling webhooks. Please speak to our specialists when signing up for the service so we can design the flow you require.
To properly receive incoming webhooks, your server should provide an endpoint supporting:
- TLS encryption version 1.2
- POST requests that are either raw in
text/plain
if encrypted orapplication/json
if no encryption is activated.
You can use a service like webhook.site to test receiving webhooks from your developer dashboard. For local testing, you can use a CLI tool such as
ngrok
to forward the requests to your local development server.When you receive an event, your endpoint should return an HTTP 2xx status code indicating that the event has been successfully received. Webhooks are automatically retried for up to 24 hours if no HTTP 200 status code is returned. The call will also be considered failed if your endpoint doesn’t respond within 10 seconds.
When a webhook call fails, we’ll retry the call 6 more times. By default, we wait:
- 10 seconds between the first and second attempt,
- 100 seconds between the third and the fourth,
- 1000 seconds between the fourth and the fifth,
- 10000 seconds for the last attempt.
-
Upcoming Features: Future improvements include a rendered payment button, seamless/modal implementations, and native SDKs.
-
Regular Open Banking Payments and Challenge Deposits: The API supports both regular open banking payments and Challenge Deposits, which include additional verification mechanisms such as name matching. These are handled through a dedicated endpoint described separately.
Typical Payment Workflow
End-user completes purchase
The end-user completes a purchase and selects the pay-by-bank option.
Handling UI Interactions
The merchant (our customer) handles all UI interactions up to this point.
Initiating Payment
The merchant sends a payment initiation request (/payments/initiate
).
Redirecting to Hosted Payment Page
A redirectUrl
for the Hosted Payment Page is returned.
User completes payment
The user is redirected to the hosted page and completes the payment.
Handling Redirect
Upon completion:
- The user is redirected back to the merchant using the
returnUrl
specified in the request. - If no URL is provided, a message such as “You can now close this window.” is displayed.
Checking Payment Status
The merchant sends a retrieve transaction status request (/payments/status
) to check the payment status.
Pending Status
If the status is still pending, all status queries will return a PENDING status.
Displaying Results
Based on the final status, the merchant can display the results to the user.
Endpoints Overview
- Initiate Payment: Redirects users to the provider’s hosted payment page and initiates a transaction.
- Retrieve Transaction Status: Retrieves the current status of a payment transaction.
- Challenge Deposit: Initiates a challenge deposit by sending a small amount to the user’s bank account.
Authentication
To access the Address Verification API, authentication is required. A Bearer Token must be included in every request.
- Tokens are valid for 60 minutes and must be refreshed after expiration.
- Refer to the Authentication for detailed steps on obtaining a token.
- Include the token in the
Authorization
header as follows:
Authorization: Bearer YOUR_ACCESS_TOKEN
API Base URL
Regular A2A Payment
1. Initiate Payment
Endpoint
POST /payments/initiate
Description
Initiates a payment by redirecting the user to a hosted payment page.
Required Headers
Header | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer yourAccessToken |
Request Body Parameters
Response Structure
Example Request
Example Response
2. Retrieve Transaction Status
Endpoint
POST /payments/status
Description
Retrieves the status of a transaction.
Request Body Parameters
Response Structure
Example Request
Example Response
Status Response Fields
Supported Languages
To specify the language for the hosted page, use the language
field in the payment initiation request. Supported languages include:
- EN
- DE
- SL
- PT
- IT
- FR
- CZ
- PL
- ES
- HU
- NL
- RO
Example:
Common Errors
Error Code | Description |
---|---|
400 | Invalid Request: Missing required fields. |
401 | Unauthorized: Authentication failed. |
403 | Permission to access this endpoint is denied. |
404 | Not Found: Reference ID not recognized. |
429 | Too many requests. |
500 | Internal Server Error: Unexpected server issue. |
501 | The operation was not implemented. |
503 | Service is unavailable. |
504 | Gateway has timed out. |
Challenge Deposit (Penny Drop)
Introduction
The Challenge Deposit (also known as Penny Drop) is an additional compliance step used for identity verification in regulated markets.
1. Initiate Challenge Deposit
Endpoint
POST /payments/challenge-deposit
Description
Initiates a challenge deposit by sending a small amount to the user’s bank account. It verifies whether the provided name and IBAN match and can optionally return PII details.
Required Headers
Header | Value |
---|---|
Content-Type | application/json |
Authorization | Bearer yourAccessToken |