POST call, passing a JSON body as specified below.| Field | Description | Type | Mandatory |
|---|---|---|---|
| languageId | Language for the article localized strings ( IT or EN, defaults to user languare or IT if omitted) | String | |
| completeExtraction | If set to T, extracts ALL the pricecs (even the ones before the last request) | Char(1) |
completeExtraction is not T the web service will retrieve all the modified prices since the last request (in this case, the parameter system must be set in the body request, representing the system the recalls will be retrieved from).| Field | Description | Type | Mandatory |
|---|---|---|---|
| start | Pagination offset parameter. (only if completeExtraction is T)The WS will retrieve the elements starting from the one with the index specified here. For example, if 'start' is set to 23, the prices from the 23rd to the 43rd will be returned. | Number |
| Field | Description | Type | Mandatory |
|---|---|---|---|
| priceListType | Type of the price list | Varchar(250) | ā |
| priceList | Code of the price list (there will be a price list for each shop) | Varchar(250) | ā |
| priceListDescription | Description of the price list | Varchar(250) | ā |
| priceListStartDate | Date of validity start of the price list | Date | ā |
| priceListEndDate | Date of validity end of the price list | Date | ā |
| entityCode (entities section) | Code of the shop for which the price list is active (this information is in an array) | Varchar(250) | ā |
| entityDescription (entities section) | Description of the shop for which the price list is active (this information is in an array) | Varchar(250) | ā |
| itemCode (prices section) | Code of product(this information is in an array) | Date | ā |
| startDate (prices section) | Date of start validity of the price (this information is in an array) | Date | ā |
| price (prices section) | Price (this information is in an array) | Decimal(20,6) | ā |
{
"success": true,
"valueObjectList": [
{
"priceListType": "A",
"priceList": "LISTINO1",
"priceListDescription": "Listino 1",
"priceListStartDate": "2020-04-24 00:00:00",
"priceListEndDate": null,
"prices": [
{
"itemCode": "00070003",
"startDate": "2020-06-05 00:00:00",
"price": 25
},
{
"itemCode": "0648",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "10402",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "10500",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "13973",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "15312",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "15317",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "15327 HO",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "15327 L",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "15327 M",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "15927 I",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "16416",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "16511",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "16802",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "17209",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "17219",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "201671",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "206-02 M",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "30976",
"startDate": "2020-06-05 00:00:00",
"price": null
},
{
"itemCode": "31067",
"startDate": "2020-06-05 00:00:00",
"price": null
}
],
"entityCodes": [
{
"entityCode": "10",
"entityDescription": "Negozio 10"
},
{
"entityCode": "999",
"entityDescription": "Eredi Ciarlariello"
},
{
"entityCode": "2",
"entityDescription": "Negozio 2"
},
{
"entityCode": "3",
"entityDescription": "Negozio 3"
},
{
"entityCode": "4",
"entityDescription": "Negozio 4"
},
{
"entityCode": "5",
"entityDescription": "Negozio 5"
},
{
"entityCode": "6",
"entityDescription": "Negozio 6"
},
{
"entityCode": "7",
"entityDescription": "Negozio 7"
},
{
"entityCode": "9",
"entityDescription": "Negozio 9"
},
{
"entityCode": "11",
"entityDescription": "Lunerti srl"
},
{
"entityCode": "12",
"entityDescription": "Huaman lopez"
},
{
"entityCode": "15",
"entityDescription": "Curcio srl"
},
{
"entityCode": "30",
"entityDescription": "Fraticelli srl"
},
{
"entityCode": "33",
"entityDescription": "Fratelli Ferri spa"
},
{
"entityCode": "99",
"entityDescription": "Salvemini"
},
{
"entityCode": "110",
"entityDescription": "Negozio 110"
},
{
"entityCode": "1",
"entityDescription": "Negozio 1"
}
]
}]
}