v2
latestOpenAPI 3.0.12026-07-262352981007.0 KBSubscription Payments
Get payment method
Returns a specific payment method associated with a subscription.
get/subscriptions/{subscriptionId}/paymentmethods/{id}
Path parameters
subscriptionIdstring required
The unique identifier of the subscription
idstring uuid required
The unique identifier of the payment method
Response
When request is successful. Returns a 'PaymentMethod' object.
Example response
{
"id": "784b3497-bf1f-47d2-93e6-1d38b96b8d3f",
"paymentSystem": "STRIPE",
"type": "CreditCard",
"isDefault": true,
"details": {
"lastFourDigits": "1234",
"expiry": "10/28",
"expiryMonth": 10,
"expiryYear": 2028,
"accountNumber": 123456789
},
"lastPaymentState": "Succeeded",
"createdDate": "2022-04-23T14:00:00Z"
}