Skip to main content
GET
/
v1
/
productGroups
/
{ProductGroupID}
/
tax
Get Product Group Tax
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/productGroups/{ProductGroupID}/tax \
  --header 'Authorization: <api-key>'
[
  {
    "TaxRowID": 123,
    "ProductGroupID": 123,
    "CountryID": 123,
    "CityID": 123,
    "RegionID": 123,
    "TaxValue": 123,
    "TaxCode": 123,
    "CreatedBy": 123,
    "CreatedDT": "2023-11-07T05:31:56Z",
    "UpdatedBy": 123,
    "UpdatedDT": "2023-11-07T05:31:56Z",
    "VatName": "<string>",
    "TaxId": "<string>",
    "TaxIncluded": true
  }
]

Authorizations

Authorization
string
header
required

Enter your API key. It's required to authenticate API requests.

Path Parameters

ProductGroupID
integer<int32>
required

The unique identifier of the product group.

Query Parameters

TaxRowID
integer<int32>

The unique identifier of the tax row (optional).

Response

200 - application/json

The tax details for the specified product group.

TaxRowID
integer<int32>

The unique identifier of the tax row.

ProductGroupID
integer<int32>

The unique identifier of the product group associated with the tax.

CountryID
integer<int32>

The unique identifier of the country where the tax applies.

CityID
integer<int32>

The unique identifier of the city where the tax applies.

RegionID
integer<int32> | null

The unique identifier of the region where the tax applies (if applicable).

TaxValue
number<double> | null

The value or rate of the tax.

TaxCode
integer<int32> | null

The code associated with the tax.

CreatedBy
integer<int64> | null

The identifier of the user who created the tax entry.

CreatedDT
string<date-time> | null

The date and time when the tax entry was created.

UpdatedBy
integer<int64> | null

The identifier of the user who last updated the tax entry.

UpdatedDT
string<date-time> | null

The date and time when the tax entry was last updated.

VatName
string | null

The name of the VAT (Value Added Tax) associated with the tax entry.

TaxId
string | null

The tax identification number associated with the tax entry.

TaxIncluded
boolean | null

Indicates whether the tax is included in the product price.