Products
Create Products
Create and categorize a new product
POST
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
The ID of the product
Example:
"p-123456789"
The name of the product
Example:
"Red Shoes"
The category of the product
Example:
"CLOTHING_GENERAL"
Response
200
application/json
Product creation response
The type of object: tax.product
.
Example:
"tax.product"
The ID of the created product
Example:
"p-20506"
The name of the created product
Example:
"Red Shoes"
The category of the created product
Example:
"CLOTHING_GENERAL"
Epoch datetime representing the date and time the product was created
Example:
1721694425
Epoch datetime representing the date and time the product was last updated
Example:
1721694425
True
if using a production API key. False
if using a test API key.
Example:
"true"