PUT
/api/v1/billing
Replaces whichever of billing_recipients and billing_information you send and leaves the other unchanged. Send an empty billing_recipients list to clear it. Billing information is pushed to the Stripe customer; a rejection keeps the local copy and returns a warning.
Request Body
{
"billing_recipients": ["[email protected]", "[email protected]"],
"billing_information": {
"company": "Example Company LLC",
"address": { "line1": "1 Main St", "city": "Sacramento", "state": "CA", "postal_code": "95814", "country": "US" },
"tax_id_type": "us_ein",
"tax_id": "12-3456789"
}
}
Response
{ "data": { "...": "the same shape as GET /billing" }, "warning": "only present when Stripe rejected the billing information" }