SRS Integration Partner Services
HomeAPIs
HomeAPIs
  1. Orders
  • 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
  • Products
    • Price
      POST
    • UOM Conversion
      GET
    • Color Recommendations
      POST
    • Catalog Item Convert
      POST
    • Catalog
      GET
    • By Item Codes
      POST
  • Customers
    • Customer Details
      GET
    • Validate Customer
      GET
    • Order Templates
      GET
  • Branches
    • Branch Locations
      GET
    • Active Branch Products
      GET
    • Customer Branch Locations
      GET
  • Deliveries
    • Coordinates
      GET
  1. Orders

Order List

POST
/orders/List
Delivery Details Information. retrieve delivery information for given order id.

Request

Header Params

Body Params application/json

Example
{
    "branchCode": "string",
    "customerNumber": "string",
    "shipToSequenceNumber": 0,
    "orderId": 0,
    "orderFromDate": "string",
    "orderToDate": "string",
    "rowReturnLimit": 0,
    "orderStatus": "string",
    "PONumber": "string",
    "jobNumber": "string",
    "shipToAddress": "string",
    "includeInvoices": "string"
}

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 'https://services-qa.roofhub.pro/orders/List' \
--header 'Authorization: Bearer' \
--header 'Content-Type: application/json' \
--data '{
    "branchCode": "string",
    "customerNumber": "string",
    "shipToSequenceNumber": 0,
    "orderId": 0,
    "orderFromDate": "string",
    "orderToDate": "string",
    "rowReturnLimit": 0,
    "orderStatus": "string",
    "PONumber": "string",
    "jobNumber": "string",
    "shipToAddress": "string",
    "includeInvoices": "string"
}'

Responses

🟢200OrderList
application/json
Bodyapplication/json

Example
{
    "orderList": [
        {
            "PONumber": "string",
            "customerCode": "string",
            "branchAddress": "string",
            "branchCity": "string",
            "branchState": "string",
            "branchZip": "string",
            "branchCityStateZip": "string",
            "branchCode": "string",
            "branchId": 0,
            "branchFax": "string",
            "branchPhone": "string",
            "branchLogo": "string",
            "branchName": "string",
            "deliveryCharges": 0,
            "jobNumber": "string",
            "referenceNumber": "string",
            "shipViaCode": "string",
            "notes": "string",
            "orderDate": "1970-01-01T00:00:00.000Z",
            "orderNumber": 0,
            "orderStatus": "string",
            "orderTotal": 0,
            "orderType": "string",
            "shipToSequenceNumber": "string",
            "shipToAddress1": "string",
            "shipToAddress2": "string",
            "shipToAddress3": "string",
            "shipToCity": "string",
            "shipToState": "string",
            "shipToZip": "string",
            "shipToCityStateZip": "string",
            "subTotal": 0,
            "tax": 0,
            "deliveryDate": "1970-01-01T00:00:00.000Z",
            "deliveryWindow": "string",
            "expectedDate": "1970-01-01T00:00:00.000Z"
        }
    ]
}
Modified at 2026-04-09 20:21:17
Previous
Order Details
Next
Submit Order
Built with