cURL
curl --request GET \ --url https://api-v2.missioninbox.com/billing/payment_methods/ \ --header 'Authorization: Basic <encoded-value>'
{ "payment_methods": [ {} ], "default_payment_method": {} }
Get all payment methods associated with the user’s account.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
Show child attributes