ob-p-ideal-notification

Notification API

for iDEAL 2.0

API Reference

The notification APIs described in this chapter needs to be implemented on the Initiating Party side, if the Initiating Party decides to use them. The Open Banking Service will post notifications to these endpoints. For the iDEAL product the post status notification is part of the product, a value-added service is not required (because the notification is part of the iDEAL scheme and the Open Banking Service doesn't have to-do additional polling).

POST Status

Endpoint: POST /status

This API will notify the initiating party about the status of the payment. More details about the fields can be found in the API reference.

Data model

Legend

  • Orange fields: mandatory for an iDEAL payment
  • Purple fields: conditionally mandatory for an IDEAL payment
Request (click to enlarge)Response
Post status iDEAL requestpost status iDEAL response

Example: Notification for Standard iDEAL payment

Request (Signature-related fields "Digest" and "Signature" are conditionally present):

Address: https://checkout.company.com/transaction/webhook/91FA6EEC30844FAAB5/v3/notification/status
  HttpMethod: POST
  Headers: {Authorization=Bearer 123456789, X-Request-ID=c1452392-6c3f-4365-93f8-40558f61ac36, MessageCreateDateTime=2023-03-15T11:51:24.185+01:00, Digest=SHA-256=0hq1mKzxB1yyc6+hut2bEX7ps+nWyWb2pgQb6AhfhfM=, Signature=keyId="3EBEF6033C00730D9C6DA05165A3CAA1F31036FB",algorithm="rsa-sha256",headers="messagecreatedatetime x-request-id digest",signature="uYgovoK+ibAE7+MzJEKrApDUAgWfUv7RQK22zAxWHCdKCuG4d0HgqpDSqcGlKmP2IMFsC787zDU3oqKeeIIVXR72uZBiOnm0/84UL9e7LVDHDLQsRbfDnmvgX/4xQvdwROmyqh8kkcXTf/48zY0wo2n9iDspCbgTn1DEqAqtAlwunIpea8eYA3FQc+pV2px77wVP7l+9mTxexzLSmum61wWbqE4ESJn0K37gXY54229ZtCnNSlu9rsvjQ5xmDf1e6MvMLBOblXHIReN2t8IH85VGK7mpi8T7JeKb8rIG8qDbQ5TD3BmIS1+RspI95FldLCKLH91/KNrxsgPsrC2QgQ==", Content-Type=application/json}
  Payload: {
  "PaymentProductUsed" : "IDEAL",
  "CommonPaymentData" : {
    "GuaranteedAmount" : "10.00",
    "PaymentStatus" : "SettlementCompleted",
    "PaymentId" : "19928",
    "AspspPaymentId" : "0001070883053837",
    "AspspId" : "10002",
    "DebtorInformation" : {
      "Name" : "Edsger Wybe Dijkstra - Callback",
      "Agent" : "ABNANL2AXXX",
      "Account" : {
        "SchemeName" : "IBAN",
        "Identification" : "NL44RABO0123456789",
        "Currency" : "EUR"
      },
  "UseWaitingScreen" : false
}

Response:

ResponseCode: 204

Example: Notification for iDEAL Payment with Fast Checkout

Request (Signature-related fields "Digest" and "Signature" are conditionally present):

Address: https://checkout.company.com/transaction/webhook/91FA6EEC30844FAAB5/v3/notification/status
  HttpMethod: POST
  Content-Type: application/json
  Headers: {Authorization=Bearer 123456789, X-Request-ID=c1452392-6c3f-4365-93f8-40558f61ac36, MessageCreateDateTime=2023-03-15T11:51:24.185+01:00, Digest=SHA-256=0hq1mKzxB1yyc6+hut2bEX7ps+nWyWb2pgQb6AhfhfM=, Signature=keyId="3EBEF6033C00730D9C6DA05165A3CAA1F31036FB",algorithm="rsa-sha256",headers="messagecreatedatetime x-request-id digest",signature="uYgovoK+ibAE7+MzJEKrApDUAgWfUv7RQK22zAxWHCdKCuG4d0HgqpDSqcGlKmP2IMFsC787zDU3oqKeeIIVXR72uZBiOnm0/84UL9e7LVDHDLQsRbfDnmvgX/4xQvdwROmyqh8kkcXTf/48zY0wo2n9iDspCbgTn1DEqAqtAlwunIpea8eYA3FQc+pV2px77wVP7l+9mTxexzLSmum61wWbqE4ESJn0K37gXY54229ZtCnNSlu9rsvjQ5xmDf1e6MvMLBOblXHIReN2t8IH85VGK7mpi8T7JeKb8rIG8qDbQ5TD3BmIS1+RspI95FldLCKLH91/KNrxsgPsrC2QgQ==", Content-Type=application/json}
  Payload: {
  "PaymentProductUsed" : "IDEAL",
  "CommonPaymentData" : {
    "GuaranteedAmount" : "10.00",
    "PaymentStatus" : "SettlementCompleted",
    "PaymentId" : "19928",
    "AspspPaymentId" : "0001070883053837",
    "AspspId" : "RABONL2UXXX",
    "DebtorInformation" : {
      "Name" : "Edsger Wybe Dijkstra - Callback",
      "Agent" : "ABNANL2AXXX",
      "Account" : {
        "SchemeName" : "IBAN",
        "Identification" : "NL44RABO0123456789",
        "Currency" : "EUR"
      },
      "ContactDetails" : {
        "FirstName" : "Edsger",
        "LastName" : "Dijkstra",
        "PhoneNumber" : "+31612345678",
        "Email" : "edsger@domain.nl"
      },
    "ShippingAddress" : {
        "FirstName" : "Edsger",
        "LastName" : "Dijkstra",
        "PostCode" : "52066",
        "Country" : "NL"
        },
    "BillingAddress" : {
        "FirstName" : "Edsger",
        "LastName" : "Dijkstra",
        "PostCode" : "52066",
        "Country" : "NL"
        }     
    }
  },
  "UseWaitingScreen" : false
}

Response:

ResponseCode: 204

POST Debtor token

Endpoint: POST /debtorToken

This API will provide a debtor token update to the Initiating party. More details about the fields can be found in the API reference.

Data model

Legend

  • Orange fields: mandatory for an iDEAL payment
  • Purple fields: conditionally mandatory for an IDEAL payment
RequestResponse
post debtorToken iDEAL requestpost debtorToken iDEAL response

Example: Debtor Token Notification for Standard iDEAL payment

Request (Signature-related fields "Digest" and "Signature" are conditionally present):

Address: https://checkout.company.com/transaction/webhook/91FA6EEC30844FAAB5/v3/notification/status
  HttpMethod: POST
  Content-Type: application/json
  Headers: {Authorization=Bearer 123456789, X-Request-ID=c1452392-6c3f-4365-93f8-40558f61ac36, MessageCreateDateTime=2023-03-15T11:51:24.185+01:00, Digest=SHA-256=0hq1mKzxB1yyc6+hut2bEX7ps+nWyWb2pgQb6AhfhfM=, Signature=keyId="3EBEF6033C00730D9C6DA05165A3CAA1F31036FB",algorithm="rsa-sha256",headers="messagecreatedatetime x-request-id digest",signature="uYgovoK+ibAE7+MzJEKrApDUAgWfUv7RQK22zAxWHCdKCuG4d0HgqpDSqcGlKmP2IMFsC787zDU3oqKeeIIVXR72uZBiOnm0/84UL9e7LVDHDLQsRbfDnmvgX/4xQvdwROmyqh8kkcXTf/48zY0wo2n9iDspCbgTn1DEqAqtAlwunIpea8eYA3FQc+pV2px77wVP7l+9mTxexzLSmum61wWbqE4ESJn0K37gXY54229ZtCnNSlu9rsvjQ5xmDf1e6MvMLBOblXHIReN2t8IH85VGK7mpi8T7JeKb8rIG8qDbQ5TD3BmIS1+RspI95FldLCKLH91/KNrxsgPsrC2QgQ==", Content-Type=application/json}
  Payload: {
  "PsuId": "TestOSZ",
  "PaymentId": "12345",
  "DebtorToken": "absjrfergd"
 }

Response:

ResponseCode: 204
Enable "on this page" menu on doc section
On

Event Stores

Event Stores

Our issuing solution is composed of several applications that pushes different types of events into one information repository.

Each Application can notify events toward this repository.

Event stores contains comments or business events that can be generated by the different applications (CMS, authorization server, customer service GUI,..) part of our solution.

Retrieve Event Stores

This API enables the list of events associated to a business reference type and a business reference value, for given period of time, to be retrieved.

A business reference type corresponds to a business domain like a CONTRACT, CARD, ACCOUNT whereas a business reference value can be typically a card, account, card contract reference.

The same event can be retrieved for different business reference types and business reference values. Event can be uniquely identified by its correlationId.

Currently, this API is mainly used to get the comments linked to a business reference value (e.g., a given card identifier).

API links

Search Event Stores

TThis API enables to retrieve the list of events associated to provided set of business reference types and a business reference values for given period of time.

A business reference types correspond to a business domain like a CONTRACT, CARD, ACCOUNT whereas a business reference values list for each provided type can be typically a card, account, card contract reference.

The same event can be retrieved for different business reference types and business reference values. Event can be uniquely identified by its correlationId.

Currently, this API is mainly used to get the comments linked to a business reference value (e.g., a given card identifier).

API links

Enable "on this page" menu on doc section
On

Transactions doc

API reference Accept transactions doc Merchant payments doc

Transactions

 

This API enables you to retrieves comprehensive transaction data based on merchant payments, contract entity and on specific periods of time.

  • Show transaction data in your application of preference
  • Retrieve the transactions associated with merchant payment (paymentId) for reconciliation purposes
  • Retrieve transaction fees generated by the Worldline FS Merchant Pricing Engine such as: Merchant Service Charge (Interchange++, Interchange+, Fixed fees), Interchange fees, Service fees, etc.
  • Acquirers can allow third parties access to retrieve own transaction data

 

The illustration below shows examples of a happy flow (resulting in a paid transaction) from the POST Transaction in Accept Transactions API through the various transactionStates in the GET Transactions API.

Flow actions and transactionStates in APIs

 

 

GET Transactions calls

Request parameters in bold on the Transactions API reference page are mandatory to complete a call.
To ensure best search call response time please use as many parameters as available.

 

There are 3 GET Transactions API call field result sets:

 

1. Transaction calls - transactionResults (CNP update ongoing)

Retrieve the latest transactionState in the transactionResults for CNP & POS transactions.

The Back Office transactionStates are:

  • Captured - host accept CAPTURE request
  • Processed - sent to SCHEME for clearing
  • Paid - merchant settlement payment instructions created

 

2. Authorization calls - actionResults (CNP API roadmap)

Retrieve latest acceptance actionResults using the following calls:

  • GET transactionId (lifecycle)
  • GET actionId
  • GET authorizations using the merchant contract entity (e.g. merchant, site, terminal)

Both approved and declined Accept Transaction actionResults can be viewed using available identifiers.

All the following Accept Transaction API actionTypes are available in the actionResults.

  • AUTH
  • PREAUTH
  • AUTH_INCREMENTAL
  • AUTH_REVERSAL
  • AUTH_REVERSAL_PARTIAL
  • AUTH_AND_CAPTURE
  • CAPTURE
  • CAPTURE_SPLIT (multiple partial captures)

 

3. Transaction Lifecycle calls (API roadmap)

Retrieve the associated first/second presentment(s) data and the associated transaction data of the different stages in the dispute life cycle (presentment, re-presentment, chargeback, pre-arbitration, settlement, manual adjustment etc.)

 

 

Enable "on this page" menu on doc section
On

Credit Instalment Management

Credit Instalment Management

Our solution supports credit instalment management allowing the Issuer to propose a number of credit instalment types to its customers. By using our credit instalment different plans, the Issuer can decide to grant a credit to its customers on a condition of its repayment at regular intervals over a specified period of time, until it is fully paid.

 

Retrieve A Credit Instalment Model Simulation

The "Request credit Instalment model simulation" API allows to simulate repayment schedule either by providing instalment model reference or instalment type (e.g. transaction, cash etc) and then customer can choose a desired instalment contract with the desired terms and repayment plan.

The mandatory input fields are:

  • The issuer ID
  • Credit amount requested by customer
  • Reference of a credit instalment model or Instalment type

As a result system returns simulated information with 1 or more repayment plans containing such as:

  • total amount due
  • total interest amount
  • fee amount (if relevant)
  • each Instalment amount
  • full repayment schedule

API links

Create A Credit Instalment Contract

The "Create credit Instalment contract" API allows to create a credit Instalment contract based on provided information.

The mandatory input fields are:

  • The issuer ID
  • Credit amount (allowed within the model range)
  • External Reference of an active credit instalment model
  • Receiving account reference which relates to the account credited. The account should not be closed.
  • Paying account reference which is assigned for credit instalment repayment posting. The account shall not be closed.

The optional/conditional input fields:

  • The customer for which the detail is requested: It can be provided by using the customer reference or the issuer customer external reference. Field is mandatory when channel is not 'SMS'.
  • External Reference of an active credit instalment model
  • Credit term which is allowed on the chosen instalment product. Default value is taken from instalment model, if credit term is not defined.
  • First instalment date which shall be allowed on the chosen instalment product
  • An external reference (MSISDN) can be provided to identify the Instalment credit contract to be credited (e.g. mobile phone number)

As a result Instalment contract is created with:

  • Credit instalment reference
  • Contract Status set as ‘Created’
  • Contract date defined as the date of the creation
  • Credit term (default value from the Instalment Model if not provided by issuer)
  • First Instalment Date (default value from the Instalment Model if not provided by issuer)
  • Total interest amount calculated
  • Total contract amount calculated (credit amount plus total interest amount and total fee)
  • Fee amount calculated
  • Monthly Instalment amount calculated
  • Repayment schedule calculated

If Instalment model reference is not provided, it will be derived from:

  • card type taken from card or card contract identifier
  • credit amount

Selected model must have the same currency and Channel Type as the one provided in the request.

If channel type is provided as 'SMS' then:

  • provided Receiving account and Paying account must be the same
  • MSISDN is mandatory

Restrictions can be applied to limit instalments per customer, per day etc.

API links

Update A Credit Instalment Contract

The "Update Credit Instalment contract" API allows to update different parameters of the contract: credit amount, Instalment term, first instalment date etc.

The mandatory input fields are:

  • The issuer ID
  • Credit Instalment Contract Reference

When the credit instalment contract is in "ACTIVE" status, system only allows to update "Paying Account Number”. No restrictions are applied for updating credit amount, even if the value is out of instalment model defined range.

API links

Cancel A Credit Instalment Contract

The "Cancel Credit Instalment contract" API allows issuer to cancel the Instalment contract before posting of the first instalment amount.

Contract status must be in "Created" status.

The mandatory input fields are:

  • The issuer ID
  • Credit Instalment Contract Reference

Upon receiving this request, the contract status will be changed from ‘Created’ to ‘Cancelled’.

API links

Activate A Credit Instalment Contract

The "Activate Credit Instalment contract" API allows issuer to request contract validation, once customer is signing the instalment contract.

The mandatory input fields are:

  • The issuer ID
  • Credit Instalment Contract Reference (can be 4 last digits if the MSISDN is provided)

Upon receiving this request, the contract status will be changed from ‘Created’ to ‘Active’.

An instalment account is created after the contract activation.

Upon instalment contract activation repayment plan is started.

API links

List Credit Instalment Contracts

The "List credit Instalment contracts" API allows to get the list of credit Instalment contracts for a given customer & issuer.

The mandatory input fields are:

  • The issuer ID
  • The customer for which the detail is requested: It can be provided by using the customer reference or the issuer customer external reference.

In return the interface provides list of credit instalment contracts (both closed and open) for a given customer with details such as: credit amount, interest rate, interest amount, repayment details, posting details on principal amount and interest, etc.

API links

Retrieve Credit Instalment Contract

The "Retrieve Credit Instalment contract" API allows to retrieve details for credit Instalment contract.

The mandatory input fields are:

  • The issuer ID
  • Credit Instalment Contract Reference

In return the interface provides details as: credit amount, interest rate, interest amount, repayment details, posting details on principal amount and interest, etc.

API links

Close All Credit Instalment Contracts For An Account

The "Close all credit Instalment contracts for an account" API allows to close all credit Instalment contracts for an account. All the Instalment contracts linked to paying account are closed.

The mandatory input fields are:

  • The issuer ID
  • Paying account reference
  • Remaining credit instalment reimbursement option (issuer or paying account)

The remaining credit for the reimbursement contract can be repaid either by the issuer or customer from their paying account defined in the credit instalment contract.

Repayment amount can be posted with 2 possible options, if repayment posting type is defined in contract property "repayment posting type":

  • Principal amount with Interest and Fee
  • Principal amount with Interest

If property is not available, three different installment operations will be posted for PRINCIPAL, INTEREST and FEE.

As a result credit instalment contract is terminated.

API links

Terminate Credit Instalment Contract

The "Terminate Credit Instalment contract" API allows the issuer or the customer to terminate the credit Instalment contract.

The mandatory input fields are:

  • The issuer ID
  • Credit Instalment Contract Reference
  • Remaining credit instalment reimbursement option (issuer or paying account)

The remaining credit for the reimbursement contract can be repaid either by the issuer or customer from their paying account defined in the credit instalment contract.

Repayment amount can be posted with 2 possible options, if repayment posting type is defined in contract property "repayment posting type":

  • Principal amount with Interest and Fee
  • Principal amount with Interest

If property is not available, three different instalment operations will be posted for PRINCIPAL, INTEREST and FEE.

As a result credit instalment contract is terminated.

API links

Early Repayment Of A Credit Instalment Contract

The "Early repayment of Credit Instalment contract" API allows to make an extra payment out of regular repayment plan.

The mandatory input fields are:

  • The issuer ID
  • Credit Instalment Contract Reference
  • Repayment Amount
  • Remaining credit instalment reimbursement option (issuer or paying account)

As a result the repayment plan is recalculated (number of instalment terms is reduced).

Repayment amount is posted with 2 possible options if repayment posting type is defined:

  • Principal amount with Interest and Fee
  • Principal amount with Interest

Otherwise three different installment operations will be posted for PRINCIPAL, INTEREST and FEE.

API links

Enable "on this page" menu on doc section
On

Transactions description generic page

Transactions description

This API allows you to provide detailed transaction data to your merchant customers. The API enables you to retrieves comprehensive transaction data based on merchant payments, contract entity and on specific periods of time.

Benefits for you!

puzComplete

Provide your merchants with the details of every merchant payment.

loc

One location

Present the merchant payment and the transactions on one location.

own

 

Own environment

Present transaction data in your own app or portal based on your own client data.
Enable "on this page" menu on doc section
On

Accounts (Features For Pre-paid and Credit Cards)

Accounts (Features For Pre-paid and Credit Cards)

Accounts are used to process operations, manage a balance in a dedicated currency, control the credit risk, perform transaction charging, calculate interest (credit or debit), generate an invoice (statement), process payments.

Three types of account working modes are being supported; Pay Later, Pay Now, Pay Before.

  • Pay Later account working mode is used to implement classical credit card products like charge cards or revolving credit. Pay later accounts are settled by a cyclic closure process and typically produce an invoice (statement) with an amount due which can represent the full or partial statement balance. Credit or debit interest algorithms may apply.
  • Pay Now account working mode is used for all types of debit cards. Such accounts are typically settled in short frequencies (e. g. daily) and produce debit orders, immediately forwarded to customers’ current accounts. Interest calculation never applies.
  • Pay Before account working mode is used for the wide range of prepaid card products. The balance is always positive.

The below diagram presents different use cases covered by the API in the account domain.

 

Enable "on this page" menu on doc section
On

Customer

Customer

A customer is a person who has subscribed to services offered by the issuer

A customer can have multiple roles and can be:

  • the owner of the contract
  • the Cardholder,
  • the owner of the account

Note that only relevant client information necessary for our processing, and customer communication on behalf of the issuer, is managed.

  • Customer data (last name, first name, etc) related to a person or to a company
  • Multiple addresses management
    • including temporarily address management
    • Address usage : card and PIN delivery, statement, client communication (letters, calls/ customer services

Several APIS are provided in order to manage the customer and their addresses as illustrated below:

Enable "on this page" menu on doc section
On

Account Insurance Contract

Account Insurance Contract

Insurance attached to an account can be managed within our system.

Example of insurance can be Payment protection insurance.

Several insurance packages can be configured in order to describe the insurance fee calculation and the usage rules.

The list of authorized insurance events and their codes are also part of an insurance package.

As an example:

 
 
 
 
 
 

Event code 

 
 
 
 
 

Description/Comment 

 
 
 
 
 

RSV 

 
 
 
 

Payment protection insurance is active 

 
 
 
 
 

RAL 

 
 
 
 

Ensured event "UNEMPLOYMENT" 

 
 
 
 
 

RAU 

 
 
 
 

Ensured event "INCAPACITY FOR WORK" 

 
 
 
 
 

RTD 

 
 
 
 

Ensured event "DEATH" 

 
 
 
 
 

RSS 

 
 
 
 

Reversal of insurance 

 
 
 
 
 

RKK 

 
 
 
 

Insurance Cancellation by the customer 

 
 
 
 
 

RKB 

 
 
 
 

Insurance Cancellation by the bank 

 
 
 
 
 

RKA 

 
 
 
 

Insurance Cancellation by the bank, automatically (maximum age reached) 

 

List Insurance Contracts For An Account

The API allows the list of insurance contracts for an account to be retrieved.

The main input fields requested by the API are:

  • The issuer ID
  • The account for which info is requested: It can be provided by using the account reference or the issuer external account reference.

In return, the list of insurance contracts is provided with the subscribed insurance package, the insurance events, the latest occurring events and the status for each contract.

The list of insurance events and their codes are pre-defined and configured in the insurance package.

The contracts with a closed status are not provided back.

The possible statuses of insurance contracts are:

  • ACTIVE,
  • INTERRUPTED,
  • DISABLED,
  • CLOSED

The statuses depends on the insurance events configuration.

API links

Retrieve An Insurance Contract For An Account

The API allows an insurance contract for an account to be retrieved.

The main input fields requested by the API are:

  • The issuer ID
  • The account for which info is requested: It can be provided by using the account reference or the issuer external account reference
  • The insurance package reference

In return, the insured events and the latest occurring events for the account and insurance package reference are returned.

The list of insurance events and their codes are a pre-defined and configured in the insurance package.

The contracts with a closed status are not provided back.

The possible status of insurance contracts are:

  • ACTIVE
  • INTERRUPTED
  • DISABLED
  • CLOSED

The statuses depends on the insurance events configuration.

API links

Create An Insurance Contract For An Account

The API allows an insurance contract for an account to be activated if the activation was not requested at the contract creation.

The main input fields requested by the API are:

  • The issuer ID
  • The account for which info is requested: It can be provided by using the account reference or the issuer external account reference
  • The insurance package reference
  • The insurance event code for activation if the activation by default is not defined in the product setup

Controls are performed in our system in order to check that:

  • The insurance package is authorized
  • The event exists for the insurance package
  • The event is associated to an event with “Activate Insurance” action
  • If insurance Minimum eligible age is configured, account owner age should be >= Minimum eligible age
  • If insurance Maximum eligible age is configured, account owner age should be <= Maximum eligible age

API links

Close An Insurance Contract

The API allows an insurance contract for an account to be closed.

The main input fields requested by the API are:

  • The issuer ID
  • The account for which info is requested: It can be provided by using the account reference or the issuer external account reference
  • The insurance package identifier

API links

Add An Insurance Event To Insurance Contract

The API is used to post some events to an insurance contract.

The complete list of event is defined in the product setup.

The actions linked to the event can be:

  • activate insurance
  • deactivate insurance
  • stop the fee calculation

The main input fields requested by the API are:

  • The issuer ID
  • The account for which info is requested: It can be provided by using the account reference or the issuer external account reference
  • The insurance package identifier

API links

Enable "on this page" menu on doc section
On

Balance and Payment

Balance And Payment

Post A Balance Adjustment Operation For An Account

The API is used to generate a balance adjustment operation on an account.

The input account can be provided by using:

  • the account reference
  • or the issuer external account reference

API links

Below an example of request and response for:

  • the account 12346393393948083995
  • the issuer 1234

POST /api/v2/issuers/1234/accounts/12346393393948083995/post-balance-adjustment-operation

Request data

{
   "  ""balanceAdjustmentReason ":" ""DISPUTE_ADJUSTMENT",
   "  ""description":" ""Balance Adjustment",
   "  ""externalOperationReference":" ""12346393393948083995",
   "  ""externalOperationDate":" ""2023-01-02T11:10:14.365Z",
   "  ""externalOperationServicePoster":" ""ISSUER",
   "  ""externalOperationCode":" ""2145",
   "  ""referenceAmount":" "{
      "    ""value": 1500,
      "    ""exponent": 2,
      "    ""isoCode":" ""EUR""  "
   },
   "  ""valueDate":" ""2023-01-02T11:10:14.365Z"
}

Response data

{
   "    ""responseMetadata":" "{
      "        ""correlationId":" ""abf49795-85f1-48c5-931e-6f65eb3162bf",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-01-02T12:20:44.403+0100",
      "        ""timeTakenMs": 873 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000376072""        "
      }"    "
   }
}

Post A Payment Operation For An Account

The API allows a payment operation to an account to be generated and posted.

A payment operation is used to pay the due amount.

If the amount provided is greater than the due amount, the overpayment can be posted to another account if provided.

As an input, the account identifier can be provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

API links

Below an example of request and response for:

  • Account: 12348153189268935960
  • issuer: 1234

POST /api/v2/issuers/1234/accounts/12348153189268935960/post-payment-operation

Request data

{
   "  ""description":" ""Manual Payment",
   "  ""externalOperationReference":" ""TESTAPI12345",
   "  ""externalOperationDate":" ""2023-02-03T14:06:08.669Z",
   "  ""externalOperationServicePoster":" ""BANK",
   "  ""externalOperationCode":" ""1051",
   "  ""referenceAmount":" "{
      "    ""value": -42445,
      "    ""exponent": 2,
      "    ""isoCode":" ""EUR""  "
   },
   "  ""valueDate":" ""2023-02-03T14:06:08.669Z",
   "  ""paymentChannel":" ""INCOMING_PAYMENT",
   "  ""sepa":" true"
}

Response data

{
   "    ""responseMetadata":" "{
      "        ""correlationId":" ""94179741-e6f4-4ea6-aee5-03a3a297e7a3",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-02-03T16:06:31.014+0100",
      "        ""timeTakenMs": 586 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000408222""        "
      }"    "
   }
}

Post A Reimbursement Operation To An Account

The API allows a reimbursement operation to an account to be generated and posted.

A reimbursement operation can be used when the account is in a credit situation.

As an input, the account identifier can be provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

API links

Below an example of reimbursement operation posted to the:

  • account: 12348743536456021829
  • issuer: 1234

POST /api/v2/issuers/1234/accounts/12348743536456021829/post-reimbursement-operation

Request data

{
   " ""description":" ""Manual Reimbursement",
   "  ""externalOperationReference":" ""12345698741aze",
   "  ""externalOperationDate":" ""2023-02-03T17:09:14.967Z",
   "  ""externalOperationServicePoster":" ""BANK",
   "  ""externalOperationCode":" ""5031",
   "  ""reimbursementType":" ""FULL",
   "  ""referenceAmount":" "{
      "    ""value": 15000,
      "    ""exponent": 2,
      "    ""isoCode":" ""EUR""  "
   }
}

Response data

{
   "   ""responseMetadata":" "{
      "        ""correlationId":" ""836bb783-1a19-40a5-80f3-ef42476ac639",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-02-03T18:15:35.663+0100",
      "        ""timeTakenMs": 254 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000408228""        "
      }"    "
   }
}

Reverse A Balance Adjustment Operation For An Account

The API is used to reverse a balance adjustment operation on an account.

As an input, the account identifier can be provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

The balance adjustment operation to be reversed must be provided.

API links

Below an example of request and response for:

  • the account 12346393393948083995
  • the issuer 1234

POST /api/v2/issuers/1234/accounts/12346393393948083995/reverse-balance-adjustment-operation

Request data

{
   "  ""reversalReason":" ""REVERSAL_ON_DEMAND",
   "  ""description":" ""DISPUTE_ADJUSTMENT REVERSAL",
   "  ""externalMatchingOperationReference":" ""12346393393948083995",
   "  ""externalMatchingOperationDate":" ""2023-01-02T11:10:14.365Z",
   "  ""externalMatchingOperationServicePoster":" ""ISSUER",
   "  ""referenceAmount":" "{
      "    ""value": 1500,
      "    ""exponent": 2,
      "    ""isoCode":" ""EUR""  "
   },
   "  ""externalOperationReference":" ""12346393393948083996",
   "  ""externalOperationDate":" ""2023-01-02T12:54:22.132Z",
   "  ""externalOperationServicePoster":" ""ISSUER"
}

Response data

{
   "    ""responseMetadata":" "{
      "        ""correlationId":" ""64366132-671f-460c-8e0e-209807ee18ef",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-01-02T14:00:34.166+0100",
      "        ""timeTakenMs": 398 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000376074""        "
      }"    "
   }
}

Reverse A Payment Operation For An Account

The API allows a payment reversal operation on an account.

A payment reversal can be requested when a direct debit returns unpaid.

As an input, the account identifier can be provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

The payment reference to be reversed must be provided.

API links

Below an example of request and response for:

  • account: 12348153189268935960
  • issuer: 1234

POST /api/v2/issuers/1234/accounts/12348153189268935960/reverse-payment-operation

Request data

{
   "  ""reversalReason":" ""REVERSAL_ON_DEMAND",
   "  ""description":" ""Manual payment reversal",
   "  ""externalMatchingOperationReference":" ""TESTAPI12345",
   "  ""externalMatchingOperationDate":" ""2023-02-03T14:06:08.669Z",
   "  ""externalMatchingOperationServicePoster":" ""BANK",
   "  ""externalOperationReference":" ""RVTESTAPI12345",
   "  ""externalOperationDate":" ""2023-02-03T17:23:46.730Z",
   "  ""externalOperationServicePoster":" ""BANK"
}

Response data

{
   "    ""responseMetadata":" "{
      "        ""correlationId":" ""45911869-8968-4948-a570-48ef47ca9b32",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-02-03T18:32:13.432+0100",
      "        ""timeTakenMs": 307 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000408230""        "
      }"    "
   }
}

Load An Account

The API allows an account to be loaded.

A load operation is used for prepaid cards to put money in an account.

The operation can have a control on the amount authorized and trigger a load operation fee, if it is configured.

As an input, the account identifier can be provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

API links

Below an example of request and the response for:

  • issuer: 1234
  • Account: 283729323911384

POST /api/v2/issuers/1234/accounts/283729323911384/post-load-operation

Request data

{
   "  ""description":" ""load test",
   "  ""externalOperationReference":" ""5678",
   "  ""externalOperationDate":" ""2023-01-02T14:31:50.961Z",
   "  ""externalOperationServicePoster":" ""ISSUER",
   "  ""externalOperationCode":" ""9999",
   "  ""referenceAmount":" "{
      "    ""value": 5000,
      "    ""exponent": 2,
      "    ""isoCode":" ""EUR""  "
   },
   "  ""paymentChannel":" ""NO_CHANNEL_PROVIDED",
   "  ""sepa":" false"
}

Response data

{
   "    ""responseMetadata":" "{
      "        ""correlationId":" ""03c5fd54-cb82-4036-bf83-e1a9a72d1903",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-01-02T14:31:54.798+0100",
      "        ""timeTakenMs": 1865 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000376075""        "
      }"    "
   }
}

Unload An Account

The API allows an account to be unloaded. An unload operation is used for prepaid cards to retrieve money from an account.

The operation can have a control on the amount authorized.

As an input, the account identifier can be provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

API links

Below an example of request and the response for:

  • Account: 283729323911384
  • issuer: 1234

POST /api/v2/issuers/1234/accounts/283729323911384/post-unload-operation

Request data

{
   "  ""description":" ""unload test",
   "  ""externalOperationReference":" ""0078",
   "  ""externalOperationDate":" ""2023-01-02T14:34:50.961Z",
   "  ""externalOperationServicePoster":" ""ISSUER",
   "  ""externalOperationCode":" ""9994",
   "  ""referenceAmount":" "{
      "    ""value": 4000,
      "    ""exponent": 2,
      "    ""isoCode":" ""EUR""  "
   }
}

Response data

{
   "    ""responseMetadata":" "{
      "        ""correlationId":" ""4918e858-6d61-44af-930a-75caee13b2e5",
      "        ""statusMessage":" ""Executed successfully",
      "        ""statusCode": 200,
      "        ""responseDateTime":" ""2023-01-02T14:34:20.183+0100",
      "        ""timeTakenMs": 186 

    
   },
   "    ""data":" "{
      "        ""operationIdentifier":" "{
         "            ""operationId":" ""1000000000376076""        "
      }"    "
   }
}

List Direct Debits For An Account

The API allows the list of sepa and non sepa direct debit notes generated from an account to repay its due amount to be retrieved.

This API applies to the credit cards domain.

API links

Below an example of request for:

  • Account: 12349485785398617383
  • Issuer: 1234

GET / api/v2/issuers/1234/accounts/12349485785398617383/direct-debits

Response data

{
                   "    ""data":" "[
                      "        "{
                         "            ""issuerId":" ""1234",
                         "            ""directDebitIdentifier":" "{
                            "                ""endToEndId":" ""12341902C221228053245590""            "
                         },
                         "            ""overPaymentAccountIdentifier":" "{
                            "                ""accountReference":" ""12349485785398617383",
                            "                ""issuerAccountExternalReference":" ""ROOT_ACCOUNT-20220809091334""            "
                         },
                         "            ""payingAccountIdentifier":" "{
                            "                ""accountReference":" ""12349485785398617383",
                            "                ""issuerAccountExternalReference":" ""ROOT_ACCOUNT-20220809091334""            "
                         },
                         "            ""amount":" "{
                            "                ""value": 475,
                            "                ""exponent": 2,
                            "                ""isoCode":" ""EUR""            "
                         },
                         "            ""creationDate":" ""2022-12-28T04:32:45.000+00:00",
                         "            ""extractType":" ""BATCH",
                         "            ""status":" ""ACCEPTED",
                         "            ""remittanceInfo":" ""ABCCARD - ABRECHNUNG VOM 20221228""        "
                      },
                      "        "{
                         "            ""issuerId":" ""1234",
                         "            ""directDebitIdentifier":" "{
                            "                ""endToEndId":" ""12344470C221227121217877""            "
                         },
                         "            ""overPaymentAccountIdentifier":" "{
                            "                ""accountReference":" ""12349485785398617383",
                            "                ""issuerAccountExternalReference":" ""ROOT_ACCOUNT-20220809091334""            "
                         },
                         "            ""payingAccountIdentifier":" "{
                            "                ""accountReference":" ""12349485785398617383",
                            "                ""issuerAccountExternalReference":" ""ROOT_ACCOUNT-20220809091334""            "
                         },
                         "            ""amount":" "{
                            "                ""value": 390,
                            "                ""exponent": 2,
                            "                ""isoCode":" ""EUR""            "
                         },
                         "            ""creationDate":" ""2022-12-27T11:12:17.000+00:00",
                         "            ""extractType":" ""BATCH",
                         "            ""status":" ""ACCEPTED",
                         "            ""remittanceInfo": ABCCARD - ABRECHNUNG VOM 20221227" 
                        }, 
                        { 
                            ""issuerId"": "1234", 
                            ""directDebitIdentifier"": { 
                                ""endToEndId"": "12344701C221227120342227" 
                            }, 
                            ""overPaymentAccountIdentifier"": { 
                                ""accountReference"": "12349485785398617383", 
                                ""issuerAccountExternalReference"": "ROOT_ACCOUNT-20220809091334" 
                            }, 
                            ""payingAccountIdentifier"": { 
                                ""accountReference"": "12349485785398617383", 
                                ""issuerAccountExternalReference"": "ROOT_ACCOUNT-20220809091334" 
                            }, 
                            ""amount"": { 
                                ""value"": 220, 
                                ""exponent"": 2, 
                                ""isoCode"": ""EUR"" 
                            }, 
                            ""creationDate"": ""2022-12-27T11":"03":"42.000+00":00", 
                            ""extractType"": ""BATCH"", 
                            ""status"": ""ACCEPTED"", 
                            ""remittanceInfo"": "ABCCARD - ABRECHNUNG VOM 20221227" 
                        }, 
                        { 
                            ""issuerId"": "1234", 
                            ""directDebitIdentifier"": { 
                                ""endToEndId"": "1234-12349485785398617383-C202212020958" 
                            }, 
                            ""overPaymentAccountIdentifier"": { 
                                ""accountReference"": "12349485785398617383", 
                                ""issuerAccountExternalReference"": "ROOT_ACCOUNT-20220809091334" 
                            }, 
                            ""payingAccountIdentifier"": { 
                                ""accountReference"": "12349485785398617383", 
                                ""issuerAccountExternalReference"": "ROOT_ACCOUNT-20220809091334" 
                            }, 
                            ""amount"": { 
                                ""value"": 3900, 
                                ""exponent"": 2, 
                                ""isoCode"": ""EUR"" 
                            }, 
                            ""creationDate"": ""2022-12-02T08":"58":"40.000+00":00", 
                            ""extractType"": ""BATCH"", 
                            ""status"": ""PAID"", 
                            ""remittanceInfo"": "ABCCARD - ABRECHNUNG VOM 20221202"\" 
                        } 
                    ] 
                }"

Create A Direct Debit Instruction

This API enables a direct debit note to be requested by debiting a customer bank account (inhouse or external) to increase the open to buy of the card account (for a particular purchase).

As a result, the direct debit is generated and after n business days (issuer configuration), the card account is paid with the requested amount (the total amount due for this card account is paid first).

The API returns the unique Direct Debit EndToEnd Identifier generated by our system and the direct debit status.

Retrieve Direct Debit

This API enables an already created direct debit instruction to be retrieved by providing in input the Direct Debit E2E Identifier and the reject reason.

API links

Below an example of request for the:

  • Issuer : 1234
  • End to end Id: 1234-12349485785398617383-C202212020958

GET /api/v2/issuers/1234/direct-debits/1234-12349485785398617383-C202212020958

Response data

"    ""data":" "{
   "        ""issuerId":" ""1234",
   "        ""directDebitIdentifier":" "{
      "            ""endToEndId":" ""1234-12349485785398617383-C202212020958""        "
   },
   "        ""overPaymentAccountIdentifier":" "{
      "            ""accountReference":" ""12349485785398617383",
      "            ""issuerAccountExternalReference":" ""ROOT_ACCOUNT-20220809091334""        "
   },
   "        ""payingAccountIdentifier":" "{
      "            ""accountReference":" ""12349485785398617383",
      "            ""issuerAccountExternalReference":" ""ROOT_ACCOUNT-20220809091334""        "
   },
   "        ""amount":" "{
      "            ""value": 3900,
      "            ""exponent": 2,
      "            ""isoCode":" ""EUR""        "
   },
   "        ""creationDate":" ""2022-12-02T08:58:40.000+00:00",
   "        ""extractType":" ""BATCH",
   "        ""status":" ""PAID",
   "        ""remittanceInfo":" "" ABCCARD  - ABRECHNUNG VOM 20221202""    "
}
}

Cancel A Direct Debit

This API enables a direct debit instruction to be cancelled by providing in input the Direct debit E2E Identifier.

The cancellation is possible for Direct debit not collected yet (sent to the bank).

API links

List Credit Transfers For An Account

The API allows the list of credit transfers posted for an account to be retrieved.

This API applies to the credit cards domain.

A credit transfer can be posted to an account to pay the due amount (for eg, self-payer).

API links

Below an example of request for:

  • Issuer 1234
  • Account reference: 658641608028488

GET /api/v2/issuers/1234/accounts/658641608028488/credit-transfers

Response data

{
           "   ""data":" "[
              "        "{
                 "            ""issuerId":" ""1234",
                 "            ""creditTransferIdentifier":" "{
                    "                ""endToEndId":" ""1234-658641608028488-F202204191155""            "
                 },
                 "            ""accountIdentifier":" "{
                    "                ""accountReference":" ""658641608028488""            "
                 },
                 "            ""creationDate":" ""2022-04-19T09:55:23.000+00:00",
                 "            ""amount":" "{
                    "                ""value": 3997,
                    "                ""exponent": 2,
                    "                ""isoCode":" ""EUR""            "
                 },
                 "            ""iban":" ""DE30200411111207360447",
                 "            ""bic":" ""SOLADEST600",
                 "            ""sci":" ""DE39ATS00000000043",
                 "            ""sepaIndicator":" true",
                 "            ""octType":" ""K",
                 "            ""remittanceInfo":" ""GUTSCHRIFT XXXXXXXXX",
                 "            ""status":" ""CREATED",
                 "            ""eventSource":" ""INTERNAL""        "
              }"    "
           ]
        }

Create A Credit Transfer Instruction

This API enables an outgoing credit transfer instruction to be created by transferring funds towards a beneficiary bank account (inhouse/external) from a card account credit balance or open-to-buy.

The beneficiary bank account IBAN must be provided in input (the Direct Debit IBAN for the card account can be used otherwise if any).

As a result, the card account is immediately debited of the requested amount.

The API returns the unique Credit Transfer EndToEnd Identifier generated by our system and the Credit Transfer status.

API links

Retrieve A Credit Transfer

This API enables an already created credit transfer instruction to be retrieved by providing in input the credit transfer E2E Identifier.

API links

Cancel A Credit Transfer

This API enables a credit transfer instruction to be cancelled by providing in input the credit transfer E2E Identifier.

API links

Cancel Account Delinquency

An account is in delinquency situation (the required minimum payment is overdue).

The API allows the delinquency situation of an account to be cancelled.

As an input, the account identifier is provided by using:

  • the account reference generated by WL
  • or the issuer external account reference

Optionally, the required overdue minimum payment can be cancelled.

As a result:

  • the account is no more in delinquency situation
  • the amount due (required overdue minimum payment) is cancelled if this has been requested.

API links

Enable "on this page" menu on doc section
On