Add Products to a Manual Pricelist

post/manualpricelistmanager.add/{id}/recalculate

Adds products to the previously created Manual Price List and recalculates the Manual Price List.

To add items without a recalculation, use the **/manualpricelistmanager.add/{id} ** endpoint.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
id
required
string

The ID of the Manual Price List where you want to add products to.

Example: 22
Request Body schema: application/json
required
object
skus
required
Array of strings
Responses
200

A general response that contains data property with a content depending on returned objects (e.g., Product master table fields when calling the /fetch/P endpoint). Can be null.

Response Schema: application/json
object
node
string
data
object or null
status
integer
startRow
integer
endRow
integer
Request samples
application/json
{
  • "data": {
    • "skus": [
      • "P00001",
      • "P00002",
      • "P00003"
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": null,
    • "status": 0,
    • "startRow": 0,
    • "endRow": 0
    }
}