Logo
Ecartapi.com Public API Documentation

Products

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

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 
Content-Type
string
Authorization
string




RESPONSES

status OK

{ "success": true, "product": { "id": "7287629840561", "sku": null, "name": "iMac", "subName": null, "upc": null, "description": "It's the small iMac with a big idea: Video.", "currency": null, "productType": "Cult Products", "quantity": "10", "price": "100.00", "cost": null, "discount": null, "dimensions": { "width": null, "height": null, "length": null, "weight": "0" }, "units": { "width": null, "height": null, "length": null, "weight": "kg" }, "category": { "id": null, "name": null, "all": [] }, "tags": [ "Emotive", "Flash Memory", "MP3", "Music" ], "status": { "id": null, "visibility": "web", "active": "true", "status": "active", "ecartapiId": "1", "ecartapi": "active" }, "variants": [ { "id": "42042195214513", "productId": "7287629840561", "barcode": null, "name": "Default Title", "price": "100.00", "currency": null, "sku": null, "fulfillmentService": "manual", "option1": "Default Title", "option2": null, "option3": null, "dimensions": { "width": null, "height": null, "length": null, "weight": null }, "units": { "width": null, "height": null, "length": null, "weight": "kg" }, "inventory": { "itemId": "44129839841457", "quantity": "10" }, "requireShipping": "true", "bundled": "false", "imageId": null, "dates": { "createdAt": "2022-08-10T15:25:49-04:00", "updatedAt": "2022-08-10T15:25:49-04:00" }, "ecartapiUrl": "https://api.ecartapi.com/api/v2/products/7287629840561/variants/42042195214513", "countryCodeOrigin": null, "provinceCodeOrigin": null, "harmonizedSystemCode": null, "countryHarmonizedSystemCode": null } ], "options": [ { "id": "9319526760625", "name": "Title", "values": [ "Default Title" ] } ], "associatedItems": [], "images": [], "imageUrl": null, "condition": null, "link": null, "dates": { "createdAt": "2022-08-10T15:25:48-04:00", "updatedAt": "2022-08-10T15:25:49-04:00" }, "vendor": "Apple", "sellOutStock": null } }



Curl
curl -X POST 'https://api.ecartapi.com/api/v2/products' -H 'Content-Type: application/json' -H 'Authorization: access_token' -d '{"product":{"name":"iMac","sku":"sku001","price":"100","quantity":"10","description":"It's the small iMac with a big idea: Video.","vendor":"Apple","productType":"Cult Products","tags":["Emotive","Flash Memory","MP3","Music"],"dimensions":{"weight":"1"},"units":{"weight":"kg"},"status":{"visibility":"web"}}}'

ENDPOINTS