POST api/v1/Customers/Query

Request Information

URI Parameters

None.

Body Parameters

QueryCustomerRequestMessage
NameDescriptionTypeAdditional information
attributes

CustomerSearchFilterAttribute

None.

type

string

None.

Request Formats

application/json, text/json

Sample:
{
  "attributes": {
    "memberNumber": "sample string 1",
    "primaryPhone": "sample string 2",
    "emailAddress": "sample string 3",
    "firstName": "sample string 4",
    "lastName": "sample string 5",
    "pageSize": 6,
    "pageNumber": 7
  },
  "type": "sample string 1"
}

application/xml, text/xml

Sample:
<QueryCustomerRequestMessage xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Type>sample string 1</Type>
  <Attributes>
    <MemberNumber>sample string 1</MemberNumber>
    <PrimaryPhone>sample string 2</PrimaryPhone>
    <EmailAddress>sample string 3</EmailAddress>
    <FirstName>sample string 4</FirstName>
    <LastName>sample string 5</LastName>
    <PageSize>6</PageSize>
    <PageNumber>7</PageNumber>
  </Attributes>
</QueryCustomerRequestMessage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

QueryCustomerListResponseMessage
NameDescriptionTypeAdditional information
data

Collection of QueryCustomerDataMessage

None.

CustomValues

Dictionary of string [key] and string [value]

None.

Errors

Collection of IPartnerResponseMessageError

None.