PaymentMethod
A single payment method.
More info: see the get operation and the payment methods endpoint.
Fields
Field | Description |
---|---|
id
int
(required) |
Unique ID Example value:123 |
name
mlstring
(required) |
Name of the payment method Example value:"Creditcard" |
config
map<string, mixed>
(required) |
Specific configuration for the payment method, content depends on the payment method type. Example value:{ "apikey": "dfggrezrf456gdsertg5GRZds" } |
internalremark
string
(required) |
Internal remark, will not be shown to customers Example value:"Processed by Mollie" |
paymentmethodtypeid
int
(required) |
Type of the paymentmethod. For a list of possible types see here Example value:1001 |
pspid
int
(required) |
Payment Service Provider this payment method is linked to Example value:10001 |
isarchived
bool
(required) |
Whether or not this item is archived |
createdts
timestamp
(required) |
Created timestamp Example value:"2014-09-26 15:24:36" |
lastupdatets
timestamp
(required) |
Last updated timestamp Example value:"2014-09-26 15:24:36" |
This type can have custom fields
Example
1{
2 "id": 123,
3 "name": "Creditcard",
4 "config": {
5 "apikey": "dfggrezrf456gdsertg5GRZds"
6 },
7 "internalremark": "Processed by Mollie",
8 "paymentmethodtypeid": 1001,
9 "pspid": 10001,
10 "isarchived": false,
11 "createdts": "2014-09-26 15:24:36",
12 "lastupdatets": "2014-09-26 15:24:36"
13}