REST API - Examples using the payment resource

Introduction

In this article, you will find examples of the provided resource usage for different operations. For each analyzed scenario, we provide an example of the data that you are expected to provide to the API, as well as an example response. Please read the page covering the payment method API resource if you haven't yet, to get more information about the payment method resource and the data it provides.

Usage

The Rest API calls for customer data (/api/customers and /api/customers/{id}) support payment information. This means you can list, create or update the payment data for customers.

Calls for order details (/api/orders/{id}) covers the payment instances. This contains the information about the payment and orders. This field could not be changed. Creating or updating are not supported.

Example:

PUT /api/customers/1
{
    "paymentData": [
        {
            "paymentMeanId": 2,
            "accountNumber": "Account",
            "bankCode": "55555555",
            "bankName": "Bank",
            "accountHolder": "Max Mustermann"
        }
    ]
}
Top