Logo
Ecartapi.com Public API Documentation

Create Product

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": "09138kiajfas", "sku": "09138kiajfas", "name": "Magic Product678", "description": "This is a product.", "currency": "MXN", "quantity": "10", "price": "100.00", "dimensions": { "width": "10", "height": "10", "length": "10", "weight": "1" }, "units": { "width": "cm", "height": "cm", "length": "cm", "weight": "kg" }, "category": { "id": null, "name": "Mujeres", "all": [] }, "tags": [], "status": { "id": null, "visibility": null, "active": null, "status": "active" }, "variants": [], "options": [], "images": [], "imageUrl": null, "condition": null, "link": null, "dates": { "createdAt": null, "updatedAt": null }, "vendor": null, "sellOutStock": null } }



Curl
curl -X POST 'https://api.ecartapi.com/api/v2/products' -H 'Content-Type: application/json' -H 'Authorization: access_token' -d '{"product":{"productId":"09138kiajfas","name":"Magic Product678","categoryId":"16489","description":"This is a product.","vendor":"AQUA LUNG","price":"100","sku":"4567890","quantity":"10","taxClass":"IVA 16%","condition":"Nuevo","countryOrigin":"Mexico","dimensions":{"height":"10","width":"10","length":"10","weight":"1"}}}'

ENDPOINTS