GET api/Shipper/GetContactUsInfo/{UserGUID}
Use this method to retrieve "Contact Us" information for user
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| UserGUID |
Unique system generated user identifier |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
ContactUsInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| PhoneNumber |
Customer service phone number |
string |
None. |
| EmailAddress |
Customer service email address |
string |
None. |
| IsSuccessful |
Used to determine if method call was successful (true) or failure (false) |
boolean |
Required |
| ErrorMessage |
The error message if method call was not successful |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PhoneNumber": "sample string 1",
"EmailAddress": "sample string 2",
"IsSuccessful": true,
"ErrorMessage": "sample string 4"
}
application/xml, text/xml
Sample:
<ContactUsInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Mobile.Models"> <ErrorMessage>sample string 4</ErrorMessage> <IsSuccessful>true</IsSuccessful> <EmailAddress>sample string 2</EmailAddress> <PhoneNumber>sample string 1</PhoneNumber> </ContactUsInfo>