GET api/ms/customer/info
Get Personal Information
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
m_customer_view| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | integer |
None. |
|
| CustomerFullName | string |
None. |
|
| CustomerEmail | string |
None. |
|
| CustomerUsername | string |
None. |
|
| ProfileImg | string |
None. |
|
| IdentityCardImg | string |
None. |
|
| IdentityCard | string |
None. |
|
| IdentityType | string |
None. |
|
| CustomerCountryCode | string |
None. |
|
| CustomerPhoneNo | string |
None. |
|
| CustomerStatus | string |
None. |
|
| CustomerVerified | string |
None. |
|
| CustomerAddress | Collection of m_address_view |
None. |
|
| Store | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CustomerId": 1,
"CustomerFullName": "sample string 2",
"CustomerEmail": "sample string 3",
"CustomerUsername": "sample string 4",
"ProfileImg": "sample string 5",
"IdentityCardImg": "sample string 6",
"IdentityCard": "sample string 7",
"IdentityType": "sample string 8",
"CustomerCountryCode": "sample string 9",
"CustomerPhoneNo": "sample string 10",
"CustomerStatus": "sample string 11",
"CustomerVerified": "sample string 12",
"CustomerAddress": [
{
"AddressId": 1,
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"Province": "sample string 4",
"District": "sample string 5",
"SubDistrict": "sample string 6",
"PostalCode": "sample string 7",
"Status": "sample string 8"
},
{
"AddressId": 1,
"AddressLine1": "sample string 2",
"AddressLine2": "sample string 3",
"Province": "sample string 4",
"District": "sample string 5",
"SubDistrict": "sample string 6",
"PostalCode": "sample string 7",
"Status": "sample string 8"
}
],
"Store": "sample string 13"
}
application/xml, text/xml
Sample:
<m_customer_view xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KFA.Modules.Models.Mainsystem">
<CustomerAddress>
<m_address_view>
<AddressId>1</AddressId>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<District>sample string 5</District>
<PostalCode>sample string 7</PostalCode>
<Province>sample string 4</Province>
<Status>sample string 8</Status>
<SubDistrict>sample string 6</SubDistrict>
</m_address_view>
<m_address_view>
<AddressId>1</AddressId>
<AddressLine1>sample string 2</AddressLine1>
<AddressLine2>sample string 3</AddressLine2>
<District>sample string 5</District>
<PostalCode>sample string 7</PostalCode>
<Province>sample string 4</Province>
<Status>sample string 8</Status>
<SubDistrict>sample string 6</SubDistrict>
</m_address_view>
</CustomerAddress>
<CustomerCountryCode>sample string 9</CustomerCountryCode>
<CustomerEmail>sample string 3</CustomerEmail>
<CustomerFullName>sample string 2</CustomerFullName>
<CustomerId>1</CustomerId>
<CustomerPhoneNo>sample string 10</CustomerPhoneNo>
<CustomerStatus>sample string 11</CustomerStatus>
<CustomerUsername>sample string 4</CustomerUsername>
<CustomerVerified>sample string 12</CustomerVerified>
<IdentityCard>sample string 7</IdentityCard>
<IdentityCardImg>sample string 6</IdentityCardImg>
<IdentityType>sample string 8</IdentityType>
<ProfileImg>sample string 5</ProfileImg>
<Store>sample string 13</Store>
</m_customer_view>