Edit single product
PUT REST API request that requires a JSON body with authorization token in order to acquire, edit desired product
Request
Request:HTTP Method | PUT | |||||
URL | Stage | https://api.stage.ananastest.com/product/api/v1/merchant-integration/product/id | ||||
Production | https://api.ananas.rs/product/api/v1/merchant-integration/product/id | |||||
URL Parameters |
| |||||
HTTP Headers |
|
Fields name | Type | Description |
packageWeightValue | BigDecimal/Double | Package weight of product |
packageWeightUnit | String | Product weight package unit |
basePrice | BigDecimal/Double | Product price with VAT included |
vat | BigDecimal/Double | Product VAT |
stockLevel | Integer | Product available stock level |
serviceable | boolean | Serviceable flag |
sku | String | SKU value |
packageHeightValue | BigDecimal/Double | Package height of product |
packageWidthValue | BigDecimal/Double | Package width of product |
packageLengthValue | BigDecimal/Double | Package length of product |
Example of request body:
{
"basePrice": 31900.00,
"vat": 10.00,
"packageWeightValue": 200.55,
"packageWeightUnit": "KG",
"packageHeightValue": 101,
"packageWidthValue": 102,
"packageLengthValue": 103,
"stockLevel": 10,
"serviceable": true,
"sku": "00280106"
}
Response
If the product with the ID does not exist, the endpoint will return a status of 404. Otherwise, it returns status 200 with the corresponding message
Response Body:Fields name | Type | Description |
status | String | Action status. Values: “SUCCESS” or “FAIL” |
errors | Array of string | Errors if action failed |
myProductId | Long | Product id |
Reponse example:
{
"type": "edit",
"status": "SUCCESS",
"errors": [],
"myProductId": 17,
"ean": "2349589484368",
"productName": "Autic 146"
}