Get Payment Methods
GET
/billing/payment-methods
const url = 'https://api.mengi.cloud/billing/payment-methods';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.mengi.cloud/billing/payment-methodsGet the user’s active payment method (mandate) from Mollie.
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
example