cURL
curl --request POST \ --url https://api.numeralhq.com/tax/products \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "reference_product_id": "p-123456789", "reference_product_name": "Red Shoes", "product_category": "CLOTHING_GENERAL" }'
{ "object": "tax.product", "reference_product_id": "p-20506", "reference_product_name": "Red Shoes", "product_category": "CLOTHING_GENERAL", "created_at": 1721694425, "updated_at": 1721694425, "testmode": "true" }
Create and categorize a new product
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Product creation response
The response is of type object.
object