POST api/Customer/UpdateCustomerGsmNumber
Request Information
URI Parameters
None.
Body Parameters
UpdateCustomerGsmNumberRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | globally unique identifier |
None. |
|
| GsmNumber | string |
None. |
|
| Source | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "7a3f3e04-7021-4e47-8180-1edfaecf3398",
"GsmNumber": "sample string 2",
"Source": "sample string 3"
}
application/xml, text/xml
Sample:
<UpdateCustomerGsmNumberRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <CustomerId>7a3f3e04-7021-4e47-8180-1edfaecf3398</CustomerId> <GsmNumber>sample string 2</GsmNumber> <Source>sample string 3</Source> </UpdateCustomerGsmNumberRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UpdateCustomerGsmNumberResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true
}
application/xml, text/xml
Sample:
<UpdateCustomerGsmNumberResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Success>true</Success> </UpdateCustomerGsmNumberResponse>