GET api/customer/PublicInfo/GetInfo?CustomerDID={CustomerDID}
Allows the user to retrieve publicly available information for active or cancelled Customer accounts.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CustomerDID |
The Customer Display ID you'd like to get Public Info for |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
PublicCustomerInfoViewModelName | Description | Type | Additional information |
---|---|---|---|
CustomerDID |
The Customer's Display ID |
string |
None. |
DisplayName |
The display name shown for the Customer. |
string |
None. |
Company |
The Customer's company name |
string |
None. |
FirstName |
The Customer's first name |
string |
None. |
LastName |
The Customer's last name |
string |
None. |
City |
The Customer's city |
string |
None. |
State |
The Customer's state |
string |
None. |
Country |
The Customer's Country |
string |
None. |
Phone | string |
None. |
|
string |
None. |
Response Formats
application/xml, text/xml
Sample:
<PublicCustomerInfoViewModel> <CustomerDID>sample string 1</CustomerDID> <DisplayName>sample string 2</DisplayName> <Company>sample string 3</Company> <FirstName>sample string 4</FirstName> <LastName>sample string 5</LastName> <City>sample string 6</City> <State>sample string 7</State> <Country>sample string 8</Country> <Phone>sample string 9</Phone> <Email>sample string 10</Email> </PublicCustomerInfoViewModel>
application/json, text/json
Sample:
{ "CustomerDID": "sample string 1", "DisplayName": "sample string 2", "Company": "sample string 3", "FirstName": "sample string 4", "LastName": "sample string 5", "City": "sample string 6", "State": "sample string 7", "Country": "sample string 8", "Phone": "sample string 9", "Email": "sample string 10" }