Products
Webhooks list
- Orders
- Order Statuses
- Products
- Availabilities
- Labels
- Categories
- Customers
- Shipments
- Payments
- Pricelists
- Languages
- Documents
Products.create
project_name(string) - name of online storeproducts(array) - array of objects with productsproduct_id(int) - product IDcode(string) - product codecreation_time(datetime) - time of creation
{} Request JSON
{
"project_name": "",
"products": [
{
"product_id": "",
"code": "",
"creation_time": "",
}
]
}
Products.update
project_name(string) - name of online storeproducts(array) - array of objects with productsproduct_id(int) - product IDcode(string) - product codelast_update_time(datetime) - time of last update
{} Request JSON
{
"project_name": "",
"products": [
{
"product_id": "",
"code": "",
"last_update_time": "",
}
]
}
Products.delete
project_name(string) - name of online storeproducts(array) - array of objects with productsproduct_id(int) - product IDcode(string) - product codedeletion_time(datetime) - time of deletion
variants(array) - array of objects with variantsvariant_id(int) - variant IDcode(string) - variant codedeletion_time(datetime) - time of deletion
{} Request JSON
{
"project_name": "",
"products": [
{
"product_id": "",
"code": "",
"deletion_time": "",
}
],
"variants": [
{
"variant_id": "",
"code": "",
"deletion_time": ""
}
]
}
Changelog
| Datum | Typ | Změna |
|---|---|---|
| 5.9.2024 | Products.create, Products.update, Products.delete |
The optimization of the maximum number of records that the endpoint returns is 5000. More records are coming in the next request. |