Billing

Get billing

GET /api/v1/billing

Returns the token owner's plan, billing recipients (the addresses every paid invoice is emailed to as a PDF) and billing information (company, address and tax ID printed on invoices).

Response

{
  "data": {
    "plan": "business",
    "billing_recipients": ["[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"
    },
    "tax_id_types": { "us_ein": "US EIN", "eu_vat": "EU VAT", "gb_vat": "UK VAT" }
  }
}