POST api/Login/UpdateMobile
Request Information
URI Parameters
None.
Body Parameters
MobileUpdateFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | string |
None. |
|
| CustomerMobile | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "sample string 1",
"CustomerMobile": "sample string 2"
}
application/xml, text/xml
Sample:
<MobileUpdateFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alphawin.MODAL.CustomerModal"> <CustomerId>sample string 1</CustomerId> <CustomerMobile>sample string 2</CustomerMobile> </MobileUpdateFilter>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
CustomerMobileUpdateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| StatusCode | integer |
None. |
|
| status | string |
None. |
|
| statusText | string |
None. |
|
| CDS | CustomerMobileUpdate |
None. |
Response Formats
application/json, text/json
Sample:
{
"StatusCode": 1,
"status": "sample string 2",
"statusText": "sample string 3",
"CDS": {
"CustomerId": "sample string 1",
"CustomerMobile": "sample string 2"
}
}
application/xml, text/xml
Sample:
<CustomerMobileUpdateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alphawin.MODAL.CustomerModal">
<CDS>
<CustomerId>sample string 1</CustomerId>
<CustomerMobile>sample string 2</CustomerMobile>
</CDS>
<StatusCode>1</StatusCode>
<status>sample string 2</status>
<statusText>sample string 3</statusText>
</CustomerMobileUpdateResponse>