I'll copy paste the output, because the output is larger than my screen: [
{
"paymentMethodID": "1",
"active": true,
"meansOfPayment": "CashOrCheck",
"description": "Handmatig",
"useInAP": true,
"details": []
},
{
"paymentMethodID": "2",
"active": true,
"meansOfPayment": "CashOrCheck",
"description": "Automatisch betalen (Autopay)",
"useInAP": true,
"details": [
{
"detailID": "01",
"description": "IBAN",
"bankingDetailType": "IBAN"
}
]
},
{
"paymentMethodID": "3",
"active": true,
"meansOfPayment": "CashOrCheck",
"description": "BTL91 (Autopay)",
"useInAP": true,
"details": [
{
"detailID": "01",
"description": "BIC",
"bankingDetailType": "BIC"
},
{
"detailID": "02",
"description": "Bankrekening",
"bankingDetailType": "BBAN"
}
]
},
{
"paymentMethodID": "9",
"active": true,
"meansOfPayment": "CashOrCheck",
"description": "Vereffening",
"useInAP": true,
"details": []
}
] Using the GET single ('https://integration.visma.net/API/controller/api/v1/paymentmethod/{paymentMethodNumber}') I can prove that 2 records are missing from the response: {
"paymentMethodID": "5",
"active": true,
"meansOfPayment": "CashOrCheck",
"description": "Incasso (CORE)",
"useInAP": false,
"details": []
} {
"paymentMethodID": "6",
"active": true,
"meansOfPayment": "CashOrCheck",
"description": "Incasso (B2B)",
"useInAP": false,
"details": []
}
... View more