Converts catalog data from one format or unit to another (e.g., packaging or measurement conversions).
Request
Body Params application/json
{
"BranchId": 1,
"Items": [
{
"GenericItemCode": "ATLAS PINNACLE PRISTINE HP SG 3 BD/SQ"
},
{
"GenericItemCode": "ACCUMETRIC MULTI-SEAL 125 CAULK 10.1 OZ"
}
]
}
Request Code Samples
curl --location --request POST 'https://services-qa.roofhub.pro/products/v2/catalog/convert' \
--header 'Authorization: Bearer' \
--header 'Content-Type: application/json' \
--data-raw '{
"BranchId": 1,
"Items": [
{
"GenericItemCode": "ATLAS PINNACLE PRISTINE HP SG 3 BD/SQ"
},
{
"GenericItemCode": "ACCUMETRIC MULTI-SEAL 125 CAULK 10.1 OZ"
}
]
}'
Responses
application/json [
{
"genericItemCode": "ATLAS PINNACLE PRISTINE HP SG 3 BD/SQ",
"conversionFound": true,
"productId": 784,
"webName": "Atlas Pinnacle Pristine HP42 SG Shingles",
"category": "SHINGLES",
"manufacturer": "Atlas"
},
{
"genericItemCode": "ACCUMETRIC MULTI-SEAL 125 CAULK 10.1 OZ",
"conversionFound": false,
"productId": null,
"webName": null,
"category": null,
"manufacturer": null
}
]
Modified at 2025-09-25 11:26:19