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
}
}'