GET api/Admin/RetailSuccessStore/CustomerLookup

Request Information

URI Parameters

None.

Body Parameters

RetailSuccessCustomerLookupRequest
NameDescriptionTypeAdditional information
CustomerID

string

None.

CustomerDID

string

None.

FirstName

string

None.

LastName

string

None.

Phone

string

None.

Email

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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedFormatter' to write type 'RetailSuccessCustomerLookupRequest'.

Response Information

Resource Description

Collection of RetailSuccessCustomerLookupResponse
NameDescriptionTypeAdditional information
CustomerID

integer

None.

CustomerDID

string

None.

Email

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"
  }
]