SRS Integration Partner Services
HomeV1 APIsV2 APIs
HomeV1 APIsV2 APIs
  1. Products
  • Authentication
    • Token
      POST
  • Orders
    • Delivery Details
      GET
    • Deliveries list
      POST
    • Proof of Delivery
      GET
    • Order Details
      GET
    • Order list
      POST
    • Submit Order
      POST
  • Invoices
    • Invoice Details
      GET
    • Invoices List
      POST
    • Invoice PDF
      GET
  • Customers
    • Customer Details
      GET
    • Validate Customer
      GET
    • Nearest Eligible Branch
      GET
    • Ship to Address
      GET
    • Order Templates
      GET
  • Products
    • Pricing
      POST
  • Branches
    • Branch Details
      GET
    • Branch Active Items
      GET
  1. Products

Pricing

Deprecated
POST
/products/pricing
Get Pricing Information: Obtain pricing information for specific items and with a specific Unit of Measure

Request

Header Params

Body Params application/json

Example
{
    "sourceSystem": "ROOFHUB",
    "customerId": "DEMO001",
    "branchCode": "SSDAL",
    "shipToSequenceNumber": "1",
    "bypassItemValidation": true,
    "itemCodeList": [
        {
            "itemCode": "GAF0487070EN",
            "option": "Barkwood",
            "quantity": 1.0,
            "UOM": "BD"
        }
    ]
}

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/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

🟢200POST Pricing FUNCTION
application/json
Body

Example
[
    {
        "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
Previous
Order Templates
Next
Branch Details
Built with