GET
/
v1
/
c
/
customer
/
{customer_id}
/
payment
/
method
/
{method_id}
curl --request GET \
  --url http://127.0.0.1:8080/v1/c/customer/{customer_id}/payment/method/{method_id} \
  --header 'wb-key: <api-key>'
{
  "created": "2023-11-07T05:31:56Z",
  "details": {
    "Card": {
      "brand": "<string>",
      "expiration": "<string>",
      "last_digits": "<string>"
    }
  },
  "holder_name": "<string>",
  "id": "Cust_c40bea18-c0c9-44b1-bd0c-43f5283e1670",
  "method_type": "card",
  "preference": 123,
  "provider": "stripe",
  "status": "active"
}

Authorizations

wb-key
string
header
required

Path Parameters

customer_id
string
required

Id of the customer

method_id
string
required

Id of the payment method

Response

200 - application/json

customer payment method

Either a Card or a Sepa Debit authorization, and the provider.

Only fields starting with card_ or fields starting with ssd_ can be filled.