Product
Create a Product
API Documentation
- Introduction
- Authentication
- Customer API
- Product
- Pricing
- Inventory
- Order
Product
Create a Product
Creates a new product in your brand catalogue.
POST
/
v1
/
products
curl --request POST \
--url https://api.partbot.io/v1/products \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '{
"product": {
"brand_id": 123,
"sku": "<string>",
"title": "<string>",
"description": "<string>",
"price": 123,
"product_type": "<string>",
"product_category": "<string>",
"sub_brand_id": 123,
"catalogue_notes": "<string>",
"is_oem": true,
"published": true
}
}'
Body
application/json
Your brand ID supplied by Partbot.
curl --request POST \
--url https://api.partbot.io/v1/products \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '{
"product": {
"brand_id": 123,
"sku": "<string>",
"title": "<string>",
"description": "<string>",
"price": 123,
"product_type": "<string>",
"product_category": "<string>",
"sub_brand_id": 123,
"catalogue_notes": "<string>",
"is_oem": true,
"published": true
}
}'