Sites

Update the tax details for a Site

Updates the registered tax identifier (e.g. VAT or GST number) and registered company address for a Site. The updated values take effect on invoices and tax reports generated after the request — historical receipts are unaffected.

post/sites/{siteId}/tax-info

Request body

tax_idstring required

The tax ID, ie the VAT number.

company_numberstring nullable

Company registration number, for example SIRET for French businesses

fr_naf_codestring nullable

NAF code for French businesses

address_line_1string required

The first address line of the registered company.

address_line_2string nullable

The second address line of the registered company.

citystring required

The city of the registered company.

countystring nullable

The county of the registered company.

countrystring required

The country of the registered company.

postcodestring required

The postcode of the registered company.

Example request

{
  "tax_id": "GB 123 4567 89",
  "company_number": "12345678901234",
  "fr_naf_code": "56.10A",
  "address_line_1": "71 Aldwych",
  "address_line_2": "WeWork",
  "city": "London",
  "county": "London",
  "country": "United Kingdom",
  "postcode": "WC2B 4HN"
}

Response

The site tax info

Example response

{
  "data": {
    "tax_id": "GB 123 4567 89",
    "company_number": "12345678901234",
    "fr_naf_code": "56.10A",
    "address_line_1": "71 Aldwych",
    "address_line_2": "WeWork",
    "city": "London",
    "county": "London",
    "country": "United Kingdom",
    "postcode": "WC2B 4HN"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.