ListProductImages

Usage
Lists a product images
Basic URI
/DesktopModules/RazorCart/Services/v1/Products/{id}/Images?top={top}&skip={skip}&orderby={orderby}
Parameters
int id                 The order Id
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/1/Images?top=50&skip=0&orderby=sort_order HTTP/1.1
Authorization: Bearer {access_token}
Content-Type: application/json
 
Response
[
  {
    "ID": 10,
    "ProductID": 1,
    "SortOrder": 0,
    "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",
    "Title": "",
    "AltTag": "",
    "Status": 0,
    "PortalID": 0
  },
  {
    "ID": 14,
    "ProductID": 1,
    "SortOrder": 1,
    "ThumbImage": "facbook-like-and-share-thumbs-up_DZ_3.jpg",
    "LargeImage": "facbook-like-and-share-thumbs-up_DZ_3.jpg",
    "ZoomImage": "facbook-like-and-share-thumbs-up_DZ_3.jpg",
    "Title": "",
    "AltTag": "",
    "Status": 0,
    "PortalID": 0
  }
]

Add Feedback