null we will attempt to create new pricing. Provide an ID and we will attempt to update it.curl --location --request POST 'https://tsapi.perenso.net/v2/products/pricing/bulk' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"productID": "string",
"warehouse": "string",
"orderUnit": "string",
"priceZone": 0,
"price": 0,
"showPrice": 0,
"msrp": 0,
"canOrder": true
}
]'{
"successful": [
{
"id": "ID",
"productID": "productID",
"warehouse": "warehouse",
"orderUnit": "orderUnit",
"priceZone": 0
}
],
"failed": [
{
"productID": "productID",
"warehouse": "warehouse",
"orderUnit": "orderUnit",
"priceZone": 0,
"message": "Reason for failure."
}
]
}