SRS Integration Partner Services
HomeV1 APIsV2 APIs
HomeV1 APIsV2 APIs
  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
  • 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. 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 --request POST 'https://services-qa.roofhub.pro/orders/List' \
--header 'Authorization: Bearer' \
--header 'Content-Type: application/json' \
--data-raw '{
    "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
Body

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 2025-09-25 13:12:27
Previous
Order Details
Next
Submit Order
Built with