Counterpart VAT IDs
Learn which VAT IDs Monite supports and how to manage them.
Overview
A VAT ID (Value Added Tax Identification Number) is a unique government-issued identification number used for tax purposes, specifically for value-added tax. It is assigned to counterparts and helps authorities track and manage tax-related transactions.
VAT ID names and formats vary from country to country. For example, in the European Union it is referred to as “VAT identification number” or VATIN. Common names in other countries include Business Number (BN), Good and Services Tax number, and sales tax numbers.
Businesses (or counterparts) can have one, multiple, or no VAT IDs depending on the country and regulatory requirements. For example, some countries do not require VAT registration for small businesses with a turnover below a certain threshold. Whereas businesses selling globally are often registered for VAT in multiple jurisdictions and thus have multiple VAT IDs.
Supported VAT ID types
Currently, Monite supports the following VAT ID types:
Need another VAT ID type?
You can request additional VAT ID types by sending an email to developers@monite.com.
Add new VAT ID
To associate a new VAT ID with a specific counterpart, call POST /counterparts/{counterpart_id}/vat_ids
, passing the VAT ID type
and value
in the request body:
The successful response contains the information about the newly added VAT ID:
List all VAT IDs
To get all VAT IDs of a specific counterpart, send a GET
request to the /counterparts/{counterpart_id}/vat_ids
endpoint as shown:
The successful response contains a list of VAT IDs of the specified counterpart:
Retrieve a VAT ID
To retrieve a specific VAT ID belonging to a counterpart, send a GET
request to the /counterparts/{counterpart_id}/vat_ids/{id}
endpoint as shown:
The successful response returns an object containing details of the counterpart’s VAT ID requested.
Edit a VAT ID
To edit an existing VAT ID of a specific counterpart, send a PATCH
request to the /counterparts/{counterpart_id}/vat_ids/{id}
endpoint. You can update the VAT ID type
, value
, or country
.
The successful response returns an object containing details of the updated VAT ID.
Delete a VAT ID
To delete an existing VAT ID from the list of VAT IDs associated with a specific counterpart, send a DELETE
request to the /counterparts/{counterpart_id}/vat_ids/{id}
endpoint as shown: