GET api/WebApiOdata/GetAllWishListShoppers?providerID={providerID}&searchString={searchString}&managerID={managerID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| providerID | integer |
Required |
|
| searchString | string |
None. |
|
| managerID | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of ShopperViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FullName | string |
None. |
|
| string |
None. |
||
| Gender | string |
None. |
|
| UserName | string |
None. |
|
| CompanyName | string |
None. |
|
| ShopperId | integer |
None. |
|
| WishListId | integer |
None. |
|
| Status | boolean |
None. |
|
| GenderType | byte |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| ShopperTypeID | integer |
None. |
|
| PreferredGroupName | string |
None. |
|
| ManagerID | integer |
None. |
Response Formats
application/json, text/json, text/html
Sample:
[
{
"FullName": "sample string 1",
"Email": "sample string 2",
"Gender": "sample string 3",
"UserName": "sample string 4",
"CompanyName": "sample string 5",
"ShopperId": 6,
"WishListId": 1,
"Status": true,
"GenderType": 64,
"FirstName": "sample string 9",
"LastName": "sample string 10",
"ShopperTypeID": 11,
"PreferredGroupName": "sample string 12",
"ManagerID": 13
},
{
"FullName": "sample string 1",
"Email": "sample string 2",
"Gender": "sample string 3",
"UserName": "sample string 4",
"CompanyName": "sample string 5",
"ShopperId": 6,
"WishListId": 1,
"Status": true,
"GenderType": 64,
"FirstName": "sample string 9",
"LastName": "sample string 10",
"ShopperTypeID": 11,
"PreferredGroupName": "sample string 12",
"ManagerID": 13
}
]
application/xml, text/xml
Sample:
<ArrayOfShopperViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Shoppers">
<ShopperViewModel>
<CompanyName>sample string 5</CompanyName>
<Email>sample string 2</Email>
<FirstName>sample string 9</FirstName>
<FullName>sample string 1</FullName>
<Gender>sample string 3</Gender>
<GenderType>64</GenderType>
<LastName>sample string 10</LastName>
<ManagerID>13</ManagerID>
<PreferredGroupName>sample string 12</PreferredGroupName>
<ShopperId>6</ShopperId>
<ShopperTypeID>11</ShopperTypeID>
<Status>true</Status>
<UserName>sample string 4</UserName>
<WishListId>1</WishListId>
</ShopperViewModel>
<ShopperViewModel>
<CompanyName>sample string 5</CompanyName>
<Email>sample string 2</Email>
<FirstName>sample string 9</FirstName>
<FullName>sample string 1</FullName>
<Gender>sample string 3</Gender>
<GenderType>64</GenderType>
<LastName>sample string 10</LastName>
<ManagerID>13</ManagerID>
<PreferredGroupName>sample string 12</PreferredGroupName>
<ShopperId>6</ShopperId>
<ShopperTypeID>11</ShopperTypeID>
<Status>true</Status>
<UserName>sample string 4</UserName>
<WishListId>1</WishListId>
</ShopperViewModel>
</ArrayOfShopperViewModel>