Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hackgate.io/llms.txt

Use this file to discover all available pages before exploring further.

Keep your organization’s billing information up to date so that Hackrate can issue correct invoices for your HackGATE subscription. Billing details are stored per organization and can be updated at any time through the API or the admin dashboard.

Retrieve billing info

Fetch your organization’s current billing details using the billing endpoint:
curl https://admin.hackgate.io/api/billing \
  -H "Authorization: Bearer <your-token>"
{
  "bussinessName": "Acme Corp",
  "vat": "EU123456789",
  "address": "123 Main Street",
  "addressLine2": "Suite 400",
  "city": "Budapest",
  "zipCode": "1051",
  "country": "Hungary",
  "state": "",
  "email": "billing@acme.com"
}
Billing information is stored per organization. If your organization has not set billing information yet, the GET endpoint returns an empty response.

Update billing info

Submit updated billing details with a POST request. This replaces any previously saved information:
curl -X POST https://admin.hackgate.io/api/billing \
  -H "Authorization: Bearer <your-token>" \
  -H "Content-Type: application/json" \
  -d '{
    "bussinessName": "Acme Corp",
    "vat": "EU123456789",
    "address": "123 Main Street",
    "addressLine2": "Suite 400",
    "city": "Budapest",
    "zipCode": "1051",
    "country": "Hungary",
    "state": "",
    "email": "billing@acme.com"
  }'

Billing fields reference

FieldDescription
bussinessNameLegal business name for invoicing.
vatVAT registration number (if applicable).
addressPrimary street address.
addressLine2Apartment, suite, or additional address information.
cityCity.
zipCodePostal / ZIP code.
countryCountry name.
stateState or province (leave empty if not applicable).
emailBilling contact email address for invoices.
For invoice queries or subscription changes, contact sales@hckrt.com directly.
Last modified on May 9, 2026