Skip to main content

Tax Rate Notifications

Nexway Monetize tracks tax rates per country and region. This section describes notifications sent when a tax (VAT) rate is created, updated, or deleted on the Nexway Monetize platform.

Event list

  • Tax Rate Createdtype=created
  • Tax Rate Updatedtype=updated
  • Tax Rate Deletedtype=deleted

List of fields

FieldTypeDescriptionR/O
subjectstringtaxRateR
typestringcreated / updated / deleted — see Event listR
objectIdstringTax rate identifierR
eventDatestring (date-time)ISO 8601 timestampR
taxRatetaxManager.TaxRateTax rate details objectR
→ iso2CountryCodestringISO 3166-1 alpha-2 country code, e.g. FR, CAR
→ regionCodestringRegion or province code, e.g. CA-QC. Present only if the rate applies to a specific regionO
→ taxRatestaxManager.TaxRateDetail[]Array of tax rate entries. For multi-rate countries the array contains one entry per tax categoryR
→ → valuenumberTax rate as a decimal, e.g. 0.05 for 5%R
→ → taxCategorystringTax category identifier, e.g. STANDARD, FEDERAL, STATE, VATR
→ → taxNamestringHuman-readable name of the tax, e.g. Federal Tax, QSTO

Examples

Tax Rate Created

{
"subject": "taxRate",
"type": "created",
"objectId": "83353aee-427f-473d-a628-55727f590641",
"eventDate": "2026-05-04T14:55:34Z",
"taxRate": {
"iso2CountryCode": "VG",
"regionCode": "VG-TEST",
"taxRates": [
{
"value": 0.05,
"taxCategory": "STANDARD"
}
]
}
}

Tax Rate Updated

{
"subject": "taxRate",
"type": "updated",
"objectId": "11109753-db0f-435b-abf4-5119a6af3ab0",
"eventDate": "2026-05-04T16:00:00Z",
"taxRate": {
"iso2CountryCode": "FR",
"taxRates": [
{
"value": 0.08,
"taxCategory": "STANDARD"
}
]
}
}

Tax Rate Deleted

{
"subject": "taxRate",
"type": "deleted",
"objectId": "83353aee-427f-473d-a628-55727f590641",
"eventDate": "2026-05-04T14:55:34Z",
"taxRate": {
"iso2CountryCode": "VG",
"regionCode": "VG-TEST",
"taxRates": [
{
"value": 0.05,
"taxCategory": "STANDARD"
}
]
}
}

Notes

  • The taxRate.taxRates array contains the full set of rates for the given country/region in this operation, not a diff.
  • For countries with multiple tax categories (e.g. federal and state), each category appears as a separate entry in taxRates.