Create a tax category
How to create a tax category via API
Request
Arguments
Body Parameter
Type
Required
Example
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