Get Pricing Information: Obtain pricing information for specific items and with a specific Unit of Measure
Request
Body Params application/json
{
"sourceSystem": "ROOFHUB",
"customerId": "DEMO001",
"branchCode": "SSDAL",
"shipToSequenceNumber": "1",
"bypassItemValidation": true,
"itemCodeList": [
{
"itemCode": "GAF0487070EN",
"option": "Barkwood",
"quantity": 1.0,
"UOM": "BD"
}
]
}
Request Code Samples
curl --location --request POST 'https://services-qa.roofhub.pro/products/pricing' \
--header 'Authorization: Bearer' \
--header 'Content-Type: application/json' \
--data-raw '{
"sourceSystem": "ROOFHUB",
"customerId": "DEMO001",
"branchCode": "SSDAL",
"shipToSequenceNumber": "1",
"bypassItemValidation": true,
"itemCodeList": [
{
"itemCode": "GAF0487070EN",
"option": "Barkwood",
"quantity": 1.0,
"UOM": "BD"
}
]
}'
Responses
application/json [
{
"availableQuantity": 251,
"onHandQty": 395,
"stock": true,
"minPackQuantity": 0,
"orderQuantity": 0,
"requestedItemCode": "GAFSARBAW",
"requestedOption": null
"requestedUOM": "BD",
"itemCode": "GAFSARBAW",
"price": 77.25,
"grossPrice": 77.25,
"netPrice": 77.25,
"priceUOM": "BD",
"uomConversionFactor": 1,
"message": "",
"messageCode": 0
}
]
Modified at 2025-09-25 13:33:25