Create a tax category

How to create a tax category via API

To create a new tax category, send a POST request to the /api/tax_categories endpoint, passing the resource arguments in the request body.

Request

POST https://yourdomain.commercelayer.io/api/tax_categories

Arguments

Body ParameterTypeRequired

type

string

Required

attributes.code

string

Required

attributes.sku_code

string

Optional

attributes.reference

string

Optional

attributes.reference_origin

string

Optional

attributes.metadata

object

Optional

relationships.sku

object

Required

relationships.tax_calculator

object

Required

Example

The following request creates a new tax category:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/tax_categories' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "tax_categories",
    "attributes": {
      "code": "31000"
    },
    "relationships": {
      "sku": {
        "data": {
          "type": "skus",
          "id": "ABCRtyUpBa"
        }
      },
      "tax_calculator": {
        "data": {
          "type": "tax_calculators",
          "id": "BCDRtyUpBa"
        }
      }
    }
  }
}'

Last updated