POST api/Values/GetCustomerInfo
Request Information
URI Parameters
None.
Body Parameters
CustomerEmailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1"
}
application/xml, text/xml
Sample:
<CustomerEmailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickSilverModel.Models"> <Email>sample string 1</Email> </CustomerEmailModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CustomerBasicInfoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| IsSuccess | boolean |
None. |
|
| CustomerInfo | CustomerBasicInfoModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"IsSuccess": true,
"CustomerInfo": {
"Email": "sample string 1",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"OTP": 1,
"OtpTimeExpires": "2025-12-31T10:52:48.3298866+00:00",
"OtpTimeCreated": "2025-12-31T10:52:48.3298866+00:00",
"ContactNumber": "sample string 4",
"AccountCode": "sample string 5",
"UserStatusId": 6,
"RecurlySubscriptionStatusId": 7,
"Zip": "sample string 8",
"State": "sample string 9",
"City": "sample string 10",
"Address": "sample string 11"
}
}
application/xml, text/xml
Sample:
<CustomerBasicInfoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuickSilverModel.Models">
<CustomerInfo>
<AccountCode>sample string 5</AccountCode>
<Address>sample string 11</Address>
<City>sample string 10</City>
<ContactNumber>sample string 4</ContactNumber>
<Email>sample string 1</Email>
<FirstName>sample string 2</FirstName>
<LastName>sample string 3</LastName>
<OTP>1</OTP>
<OtpTimeCreated>2025-12-31T10:52:48.3298866+00:00</OtpTimeCreated>
<OtpTimeExpires>2025-12-31T10:52:48.3298866+00:00</OtpTimeExpires>
<RecurlySubscriptionStatusId>7</RecurlySubscriptionStatusId>
<State>sample string 9</State>
<UserStatusId>6</UserStatusId>
<Zip>sample string 8</Zip>
</CustomerInfo>
<IsSuccess>true</IsSuccess>
<Message>sample string 1</Message>
</CustomerBasicInfoResponse>