SRS Integration Partner Services
HomeV1 APIsV2 APIs
HomeV1 APIsV2 APIs
  1. Products
  • Authentication
    • Token
      POST
  • Products
    • Catalog
      GET
    • By Item Codes
      POST
    • Price
      POST
    • catalog Item Convert
      POST
    • Color Recommendations
      POST
  • Deliveries
    • Coordinates
      GET
  • Branches
    • Branch Locations
      GET
    • Active Branch Products
      GET
    • Customer Branch Locations
      GET
  • Customers
    • OrderTemplates
      GET
  • Orders
    • Submit Order
      POST
  1. Products

catalog Item Convert

POST
/products/v2/catalog/convert
Converts catalog data from one format or unit to another (e.g., packaging or measurement conversions).

Request

Header Params

Body Params application/json

Example
{
  "BranchId": 1,
  "Items": [
    {
      "GenericItemCode": "ATLAS PINNACLE PRISTINE HP SG 3 BD/SQ"
    },
    {
      "GenericItemCode": "ACCUMETRIC MULTI-SEAL 125 CAULK 10.1 OZ"
    }
  ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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

🟢200Catalog/Convert SRS
application/json
Body

Example
[
    {
        "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
Previous
Price
Next
Color Recommendations
Built with