ListProducts

Usage
Lists all products
Basic URI
/DesktopModules/RazorCart/Services/v1/Products?top={top}&skip={skip}&orderby={orderby}
Parameters
int top               The maximum number of rows to return
int skip              The start row index
string orderby    A sort expression
AUTH
Bearer JWT
Required Scope(s)
products
 
Request
GET https://domain.com/DesktopModules/RazorCart/Services/v1/Products?top=50&skip=0&orderby=sort_order HTTP/1.1
Authorization: Bearer {access_token}
Content-Type: application/json
 
Response
[
  {
    "ProductID": 1,
    "CategoryID": 2,
    "Manufacturer": "SC Tech Group",
    "ModelNumber": "RC-Reg-01",
    "ModelName": "Regular Product",
    "UnitCost": 5,
    "QuantityOnHand": 9,
    "Summary": "This is a sample product",
    "Description": "This is the Summary tab content",
    "Featured": true,
    "Weight": 1,
    "SortOrder": 1,
    "Items": 1,
    "Recurring": false,
    "SubscriptionInterval": "",
    "RecurringOccurances": 1,
    "RequireLogin": false,
    "UsePriPriceWght": false,
    "MasterBundleID": 0,
    "BundleID": 0,
    "PortalID": 0,
    "TitleTag": "",
    "DescriptionTag": "",
    "KeywordTag": "",
    "RequireCoupon": false,
    "Description2": "",
    "Description3": "",
    "Description4": "",
    "Description5": "",
    "TabName1": "Summary",
    "TabName2": "",
    "TabName3": "",
    "TabName4": "",
    "TabName5": "",
    "SEOURL": "regular-product",
    "HideThumbnail": false,
    "HidePrice": false,
    "PriceClass": "Class 1",
    "MinOrderQty": -1,
    "ChargeHandling": false,
    "HideQuantity": false,
    "PriceUnits": null,
    "MaxOrderQty": -1,
    "Width": 0,
    "Height": 0,
    "Length": 0,
    "RecurringStartDate": "-",
    "ExcludeVariantRecur": false,
    "WholesalePrice": 0,
    "SalePrice": 3.99,
    "HideProduct": false,
    "ShowProductRole": false,
    "Upsell": false,
    "EnableTrial": false,
    "TrialInterval": "0",
    "TrialOccurences": null,
    "TrialAmount": 0,
    "UseCompanyLogo": false,
    "UserEnteredAmount": false,
    "Booking": false,
    "BookingUnits": "0",
    "RecurStartDateSetup": "StartNow",
    "ProductDetailUrl": null,
    "GiftCard": false,
    "SaleStartDate": "2016-01-01T00:00:00",
    "SaleEndDate": "2020-12-31T00:00:00",
    "CompareGroup": "-Select-",
    "ProductTypeID": 0,
    "StoreID": 1,
    "ThumbImage": "vector-approved-stamp-isolated-white-29840749_DZ_4.jpg",
    "LargeImage": "vector-approved-stamp-isolated-white-29840749_DZ_4.jpg",
    "ZoomImage": "vector-approved-stamp-isolated-white-29840749_DZ_4.jpg",
    "HasVariants": false,
    "IsUnderSale": true,
    "MemberPriceOption": 0,
    "TotalRecords": 7,
    "MoreRecords": 0
  },
  {
    "ProductID": 4,
    "CategoryID": 0,
    "Manufacturer": "SC Tech Group",
    "ModelNumber": "HOST-01",
    "ModelName": "Hosting Plan",
    "UnitCost": 3,
    "QuantityOnHand": 998,
    "Summary": "",
    "Description": "",
    "Featured": false,
    "Weight": 1,
    "SortOrder": 4,
    "Items": 1,
    "Recurring": true,
    "SubscriptionInterval": "Monthly",
    "RecurringOccurances": 12,
    "RequireLogin": false,
    "UsePriPriceWght": false,
    "MasterBundleID": 0,
    "BundleID": 0,
    "PortalID": 0,
    "TitleTag": "Hosting Plan",
    "DescriptionTag": "Hosting Plan",
    "KeywordTag": "Hosting,Plan",
    "RequireCoupon": false,
    "Description2": "",
    "Description3": "",
    "Description4": "",
    "Description5": "",
    "TabName1": "",
    "TabName2": "",
    "TabName3": "",
    "TabName4": "",
    "TabName5": "",
    "SEOURL": "hosting-plan",
    "HideThumbnail": false,
    "HidePrice": false,
    "PriceClass": "0",
    "MinOrderQty": -1,
    "ChargeHandling": false,
    "HideQuantity": false,
    "PriceUnits": null,
    "MaxOrderQty": -1,
    "Width": -1,
    "Height": -1,
    "Length": -1,
    "RecurringStartDate": "-",
    "ExcludeVariantRecur": false,
    "WholesalePrice": 0,
    "SalePrice": 0,
    "HideProduct": false,
    "ShowProductRole": false,
    "Upsell": false,
    "EnableTrial": false,
    "TrialInterval": "0",
    "TrialOccurences": null,
    "TrialAmount": 0,
    "UseCompanyLogo": false,
    "UserEnteredAmount": false,
    "Booking": false,
    "BookingUnits": "Daily",
    "RecurStartDateSetup": "PromptUser",
    "ProductDetailUrl": null,
    "GiftCard": false,
    "SaleStartDate": "1900-01-01T00:00:00",
    "SaleEndDate": "1900-01-01T00:00:00",
    "CompareGroup": "-Select-",
    "ProductTypeID": 0,
    "StoreID": 1,
    "ThumbImage": "4_1.jpg",
    "LargeImage": "4_1.jpg",
    "ZoomImage": "4_1.jpg",
    "HasVariants": false,
    "IsUnderSale": false,
    "MemberPriceOption": 0,
    "TotalRecords": 7,
    "MoreRecords": 0
  }
]

Add Feedback