Run in Apidog
Bank transfer and/or other provider methods (SEPA, card, …). Each item has an id: use it as default_paymethod_id on PUT /account/paymethods/, or send paymethod: bank_transfer to prefer bank transfer.
Request Add parameter in header API-key
Example: API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/account/paymethods/' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' Responses application/json Generate Code
{
"status" : 0 ,
"status_description" : "string" ,
"data" : {
"paymethods" : [
{
"id" : 0 ,
"type" : "string" ,
"label" : "string" ,
"status" : "string" ,
"status_label" : "string" ,
"details" : "string" ,
"is_default" : true
}
]
}
}
Modified at 2026-04-09 12:56:00