tax.remove

This method is used to remove an existent Tax.

Version

v2

Arguments

This method has the path /tax/<version>/tax.remove and follows the MicroBase API calling conventions.

Argument Required Type Example Description
id yes String rJGOMDf Tax database identifier.

Response

Returns a Tax object:

{
    "ok": true
}

Errors

Expected errors that this method could return. Some errors return additional data.

Error Data Description
tax_not_found The data causing the error Tax to update not found
tax_has_products_associated The data causing the error Tax to update has products associated
validation_error The data causing the error Some validation error

Example

curl --request POST \
  --url http://localhost:3000/services/tax/v1/tax.remove \
  --header 'authorization: Bearer xxxxx...' \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --data '{
      "id": "HJs04P45" \
      }'