cURL
curl --request GET \ --url https://api-v2.missioninbox.com/billing/address/ \ --header 'Authorization: Basic <encoded-value>'
{ "data": { "line1": "<string>", "line2": "<string>", "city": "<string>", "state": "<string>", "postal_code": "<string>", "country": "<string>", "name": "<string>" } }
Get or update customer billing address in Stripe.
GET: Retrieve current billing address from Stripe customer PUT: Update billing address in Stripe customer record
The billing address is used for tax calculations and invoice generation.
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