Add Products to a Manual Price List (No Recalculation)

post/manualpricelistmanager.add/{id}

Adds products to the previously created Manual Price List. Use to skip recalculation of comments and manualResultPrice (Manual Override).

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

OK

Response Schema: application/json
object
node
string non-empty
data
any
status
number
Request samples
application/json
{
  • "data": {
    • "skus": [
      • "P00001",
      • "P00002",
      • "P00003"
      ]
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "data": null,
    • "status": 0
    }
}