Logo
Ecartapi.com Public API Documentation

Create Product

POST https://api.ecartapi.com/api/v2/products

Creates a new product and add to the store product list.

REQUIRED INFORMATION

* pageId

If you want the product to be published in a certain page get the pageId from the Get Store Request otherwise the product will be published on a random page.

Find more information about the ecommerce resource.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Authorization
string




RESPONSES

status OK

{ "success": true, "product": { "id": "5f7de428d875ab6371ee0ccd", "sku": "SQ0557856", "name": "Blouse", "description": "<p>This can be a few words or even a few <i>paragraphs</i>.</p>", "currency": "USD", "productType": "PHYSICAL", "quantity": "100", "price": "12.95", "dimensions": { "width": "5", "height": "5", "length": "7", "weight": "10" }, "units": { "width": "INCH", "height": "INCH", "length": "INCH", "weight": "POUND" }, "category": { "id": null, "name": null, "all": [] }, "tags": [ "artisanal", "steak" ], "status": { "id": null, "visibility": "true", "active": null, "status": null }, "variants": [ { "id": "512df882-8ef2-43f1-be3c-bbc0e77df387", "productId": "5f7de428d875ab6371ee0ccd", "name": "Blouse", "price": "12.95", "currency": "USD", "sku": "SQ0557856", "fulfillmentService": null, "option1": "Default", "option2": null, "option3": null, "dimensions": { "width": "5", "height": "5", "length": "7", "weight": "10" }, "units": { "width": "INCH", "height": "INCH", "length": "INCH", "weight": "POUND" }, "inventory": { "itemId": null, "quantity": "100" }, "requireShipping": null, "imageId": null, "dates": { "createdAt": null, "updatedAt": null }, "ecartapiUrl": null } ], "options": [ { "id": null, "name": "flavor", "values": [ "Default" ] } ], "images": [], "imageUrl": null, "condition": null, "link": "https://fuchsia-oarfish-3grt.squarespace.com/tienda-2/p/blouse", "dates": { "createdAt": "2020-10-07T15:52:08.752Z", "updatedAt": "2020-10-07T15:52:08.752Z" }, "vendor": null, "sellOutStock": null } }

Curl
curl -X POST 'https://api.ecartapi.com/api/v2/products' -H 'Authorization: access_token' -d '{"product":{"pageId":"5f75fe530cb6f82db937253e","name":"Blouse","description":"\u003cp\u003eThis can be a few words or even a few \u003ci\u003eparagraphs\u003c/i\u003e.\u003c/p\u003e","sku":"SQ0557856","price":"12.95","currency":"USD","quantity":"100","tags":["artisanal","steak"],"options":[{"name":"flavor"}],"dimensions":{"weight":"10","length":"7.0","width":"5.0","height":"5.0"},"units":{"weight":"POUND","width":"INCH"}}}'

ENDPOINTS