POST api/Customer/UpdateCustomerGsmNumber
Request Information
URI Parameters
None.
Body Parameters
UpdateCustomerGsmNumberRequestName | Description | Type | Additional information |
---|---|---|---|
CustomerId | globally unique identifier |
None. |
|
GsmNumber | string |
None. |
|
Source | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerId": "8809362e-aefd-4e3d-bcb3-3ab09f7a7727", "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>8809362e-aefd-4e3d-bcb3-3ab09f7a7727</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
UpdateCustomerGsmNumberResponseName | 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>