POST api/Customer/GetCustomer

Request Information

URI Parameters

None.

Body Parameters

CustomerDetailsRequest
NameDescriptionTypeAdditional information
Mobile

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Mobile": "sample string 1"
}

application/xml, text/xml

Sample:
<CustomerDetailsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
  <Mobile>sample string 1</Mobile>
</CustomerDetailsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerDetailsResponse
NameDescriptionTypeAdditional information
CustomerProfile

CustomerProfile

None.

Status

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "CustomerProfile": {
    "UserId": 1,
    "Mobile": "sample string 2",
    "Name": "sample string 3",
    "EmailId": "sample string 4",
    "Gender": "sample string 5"
  },
  "Status": true
}

application/xml, text/xml

Sample:
<CustomerDetailsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ttadmin.Common.Request">
  <CustomerProfile>
    <EmailId>sample string 4</EmailId>
    <Gender>sample string 5</Gender>
    <Mobile>sample string 2</Mobile>
    <Name>sample string 3</Name>
    <UserId>1</UserId>
  </CustomerProfile>
  <Status>true</Status>
</CustomerDetailsResponse>