POST api/product/list

Request Information

URI Parameters

None.

Body Parameters

RequestProductListModel
NameDescriptionTypeAdditional information
productCategoryIDs

Collection of globally unique identifier

None.

name

string

None.

keyword

string

None.

APIEndPoint

string

None.

ParentEntityId

globally unique identifier

None.

pageSize

integer

None.

pageNumber

integer

None.

SortBy

string

None.

SortOrderDescending

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "productCategoryIDs": [
    "299fb828-b515-42fc-b1db-f607dd573725",
    "e27844f3-e5d4-4308-b913-7d2966732a6c"
  ],
  "name": "sample string 1",
  "keyword": "sample string 2",
  "APIEndPoint": "sample string 3",
  "ParentEntityId": "21af8722-a642-44e7-9578-2ba411ab84a1",
  "pageSize": 4,
  "pageNumber": 5,
  "SortBy": "sample string 6",
  "SortOrderDescending": true
}

application/xml, text/xml

Sample:
<RequestProductListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OAuthServer.Models.RequestModels">
  <APIEndPoint>sample string 3</APIEndPoint>
  <ParentEntityId>21af8722-a642-44e7-9578-2ba411ab84a1</ParentEntityId>
  <SortBy>sample string 6</SortBy>
  <SortOrderDescending>true</SortOrderDescending>
  <pageNumber>5</pageNumber>
  <pageSize>4</pageSize>
  <keyword>sample string 2</keyword>
  <name>sample string 1</name>
  <productCategoryIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>299fb828-b515-42fc-b1db-f607dd573725</d2p1:guid>
    <d2p1:guid>e27844f3-e5d4-4308-b913-7d2966732a6c</d2p1:guid>
  </productCategoryIDs>
</RequestProductListModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.