PaymentMethods
List PaymentMethods
PaymentMethods
List PaymentMethods
GET
/
api
/
v1
/
payment-methods
curl --request GET \
--url https://app.flowglad.com/api/v1/payment-methods \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"customerId": "<string>",
"billingDetails": {
"name": "<string>",
"email": "<string>",
"address": {
"name": "<string>",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
}
},
"type": "card",
"default": true,
"paymentMethodData": {},
"metadata": {}
}
],
"currentCursor": "<string>",
"nextCursor": "<string>",
"hasMore": true,
"total": 123
}
Authorizations
Response
200
application/json
Successful response
Available options:
card
, us_bank_account
, sepa_debit
curl --request GET \
--url https://app.flowglad.com/api/v1/payment-methods \
--header 'Authorization: <api-key>'
{
"data": [
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"customerId": "<string>",
"billingDetails": {
"name": "<string>",
"email": "<string>",
"address": {
"name": "<string>",
"address": {
"line1": "<string>",
"line2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
}
}
},
"type": "card",
"default": true,
"paymentMethodData": {},
"metadata": {}
}
],
"currentCursor": "<string>",
"nextCursor": "<string>",
"hasMore": true,
"total": 123
}