Skip to main content
The billing endpoints let you read and update the billing profile attached to your organization. This profile is used for invoicing and must be accurate for VAT compliance. Use GET /api/billing to retrieve the current record and POST /api/billing to update it.

Get billing details

Returns the current billing profile for your organization.

Request

string
required
Bearer token. See Authentication.

Response

string
Legal business name for invoicing.
string
VAT registration number (if applicable).
string
Primary address line (street and number).
string
Secondary address line (apartment, suite, floor, etc.).
string
City.
string
Postal or ZIP code.
string
Country.
string
State, province, or region.
string
Email address where invoices and billing notifications are sent.

Example


Update billing details

Replaces the billing profile for your organization. Send all fields — any field you omit will be cleared.

Request

string
required
Bearer token. See Authentication.
string
required
Must be application/json.

Body parameters

string
Legal business name for invoicing.
string
VAT registration number. Leave blank if not VAT-registered.
string
Primary address line (street and number).
string
Secondary address line (apartment, suite, floor, etc.).
string
City.
string
Postal or ZIP code.
string
Country.
string
State, province, or region.
string
Email address for invoices and billing notifications.

Response

Returns 200 OK on success. The response body may be empty.

Example