> ## Documentation Index
> Fetch the complete documentation index at: https://devzone.nayax.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Product Group Tax

> Deletes a specific tax entry associated with a product group, identified by both ProductGroupID and TaxRowID. This operation removes the specified tax row from the product group.



## OpenAPI

````yaml /openapi/lynx.yaml delete /v1/productGroups/{ProductGroupID}/tax/{TaxRowID}
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/productGroups/{ProductGroupID}/tax/{TaxRowID}:
    delete:
      tags:
        - Product Groups
      summary: Delete Product Group Tax
      description: >-
        Deletes a specific tax entry associated with a product group, identified
        by both ProductGroupID and TaxRowID. This operation removes the
        specified tax row from the product group.
      operationId: delete-product-group-tax
      parameters:
        - name: ProductGroupID
          in: path
          description: The unique identifier of the product group.
          required: true
          schema:
            type: integer
            format: int32
        - name: TaxRowID
          in: path
          description: The unique identifier of the tax row to be deleted.
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: >-
            The tax row was successfully deleted from the specified product
            group.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VatDTO'
components:
  schemas:
    VatDTO:
      type: object
      properties:
        TaxRowID:
          type: integer
          format: int32
          description: The unique identifier of the tax row.
        ProductGroupID:
          type: integer
          format: int32
          description: The unique identifier of the product group associated with the tax.
        CountryID:
          type: integer
          format: int32
          description: The unique identifier of the country where the tax applies.
        CityID:
          type: integer
          format: int32
          description: The unique identifier of the city where the tax applies.
        RegionID:
          type: integer
          format: int32
          nullable: true
          description: >-
            The unique identifier of the region where the tax applies (if
            applicable).
        TaxValue:
          type: number
          format: double
          nullable: true
          description: The value or rate of the tax.
        TaxCode:
          type: integer
          format: int32
          nullable: true
          description: The code associated with the tax.
        CreatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who created the tax entry.
        CreatedDT:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the tax entry was created.
        UpdatedBy:
          type: integer
          format: int64
          nullable: true
          description: The identifier of the user who last updated the tax entry.
        UpdatedDT:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the tax entry was last updated.
        VatName:
          type: string
          nullable: true
          description: The name of the VAT (Value Added Tax) associated with the tax entry.
        TaxId:
          type: string
          nullable: true
          description: The tax identification number associated with the tax entry.
        TaxIncluded:
          type: boolean
          nullable: true
          description: Indicates whether the tax is included in the product price.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````