GET api/Admin/RetailSuccessStore/CustomerLookup
Request Information
URI Parameters
None.
Body Parameters
RetailSuccessCustomerLookupRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerID | string |
None. |
|
| CustomerDID | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| Phone | string |
None. |
|
| string |
None. |
||
| RepDID | string |
None. |
Request Formats
application/xml, text/xml
Sample:
<RetailSuccessCustomerLookupRequest> <CustomerID>sample string 1</CustomerID> <CustomerDID>sample string 2</CustomerDID> <FirstName>sample string 3</FirstName> <LastName>sample string 4</LastName> <Phone>sample string 5</Phone> <Email>sample string 6</Email> <RepDID>sample string 7</RepDID> </RetailSuccessCustomerLookupRequest>
application/json, text/json
Sample:
{
"CustomerID": "sample string 1",
"CustomerDID": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"Phone": "sample string 5",
"Email": "sample string 6",
"RepDID": "sample string 7"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of RetailSuccessCustomerLookupResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerID | integer |
None. |
|
| CustomerDID | string |
None. |
|
| string |
None. |
||
| RepDID | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<ListOfRetailSuccessCustomerLookupResponse>
<RetailSuccessCustomerLookupResponse>
<CustomerID>1</CustomerID>
<CustomerDID>sample string 2</CustomerDID>
<Email>sample string 3</Email>
<RepDID>sample string 4</RepDID>
</RetailSuccessCustomerLookupResponse>
<RetailSuccessCustomerLookupResponse>
<CustomerID>1</CustomerID>
<CustomerDID>sample string 2</CustomerDID>
<Email>sample string 3</Email>
<RepDID>sample string 4</RepDID>
</RetailSuccessCustomerLookupResponse>
</ListOfRetailSuccessCustomerLookupResponse>
application/json, text/json
Sample:
[
{
"CustomerID": 1,
"CustomerDID": "sample string 2",
"Email": "sample string 3",
"RepDID": "sample string 4"
},
{
"CustomerID": 1,
"CustomerDID": "sample string 2",
"Email": "sample string 3",
"RepDID": "sample string 4"
}
]