Push a new product

ProductStatus

type ProductStatus = 
  | 'active'
	| 'draft'
  | 'archived'
	

Variant

{
  "id": string,
  "sku": string,
  "item_title": string,
  "origin_country_code": string,
  "taxable": boolean,
  "created_at": string,
  "updated_at": string
}

CreateProductRequest payload

{
  "source_product_id": string,
  "status": string,
  "title": string,
  "category": string,
  "description": string,
  "variants": Variant[],
}

Response Payload

{
  "id": string,
  "source_product_id": string,
  "status": ProductStatus,
  "title": string,
  "category": string,
  "description": string,
  "created_at": string,
  "updated_at": string,
  "variants": Variant[]
}
Language
Credentials
Header
Click Try It! to start a request and see the response here!