POST api/Helper/PRODUCT_LIST
Request Information
URI Parameters
None.
Body Parameters
ZProductListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Name | string |
None. |
|
| ProviderID | integer |
None. |
|
| ShopID | integer |
None. |
|
| ProductGroupID | integer |
None. |
|
| SearchKey | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Name": "sample string 2",
"ProviderID": 3,
"ShopID": 4,
"ProductGroupID": 5,
"SearchKey": "sample string 6"
}
application/xml, text/xml
Sample:
<ZProductListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS.Entity"> <Code>sample string 1</Code> <Name>sample string 2</Name> <ProductGroupID>5</ProductGroupID> <ProviderID>3</ProviderID> <SearchKey>sample string 6</SearchKey> <ShopID>4</ShopID> </ZProductListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ZProductListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Code | string |
None. |
|
| ProductName | string |
None. |
|
| ProductGroupName | string |
None. |
|
| Avatar | string |
None. |
|
| PricesSell | integer |
None. |
|
| CreatedDate | string |
None. |
|
| CreatedByFullName | string |
None. |
|
| VariantNumber | integer |
None. |
|
| Quantity | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Code": "sample string 2",
"ProductName": "sample string 3",
"ProductGroupName": "sample string 4",
"Avatar": "sample string 5",
"PricesSell": 6,
"CreatedDate": "sample string 7",
"CreatedByFullName": "sample string 8",
"VariantNumber": 9,
"Quantity": 10
},
{
"ID": 1,
"Code": "sample string 2",
"ProductName": "sample string 3",
"ProductGroupName": "sample string 4",
"Avatar": "sample string 5",
"PricesSell": 6,
"CreatedDate": "sample string 7",
"CreatedByFullName": "sample string 8",
"VariantNumber": 9,
"Quantity": 10
}
]
application/xml, text/xml
Sample:
<ArrayOfZProductListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS.Entity">
<ZProductListResponse>
<Avatar>sample string 5</Avatar>
<Code>sample string 2</Code>
<CreatedByFullName>sample string 8</CreatedByFullName>
<CreatedDate>sample string 7</CreatedDate>
<ID>1</ID>
<PricesSell>6</PricesSell>
<ProductGroupName>sample string 4</ProductGroupName>
<ProductName>sample string 3</ProductName>
<Quantity>10</Quantity>
<VariantNumber>9</VariantNumber>
</ZProductListResponse>
<ZProductListResponse>
<Avatar>sample string 5</Avatar>
<Code>sample string 2</Code>
<CreatedByFullName>sample string 8</CreatedByFullName>
<CreatedDate>sample string 7</CreatedDate>
<ID>1</ID>
<PricesSell>6</PricesSell>
<ProductGroupName>sample string 4</ProductGroupName>
<ProductName>sample string 3</ProductName>
<Quantity>10</Quantity>
<VariantNumber>9</VariantNumber>
</ZProductListResponse>
</ArrayOfZProductListResponse>