POST api/Customer/UpdateGsmNotificationPermission
Request Information
URI Parameters
None.
Body Parameters
UpdateGsmNotificationPermissionRequestName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
GsmNumber | string |
None. |
|
IsCorporateAccount | boolean |
None. |
|
SmsOptIn | boolean |
None. |
|
CallOptIn | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": "43fe1558-6a4f-49fb-a134-ded16984f203", "GsmNumber": "sample string 2", "IsCorporateAccount": true, "SmsOptIn": true, "CallOptIn": true }
application/xml, text/xml
Sample:
<UpdateGsmNotificationPermissionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <CallOptIn>true</CallOptIn> <GsmNumber>sample string 2</GsmNumber> <IsCorporateAccount>true</IsCorporateAccount> <SmsOptIn>true</SmsOptIn> <UserId>43fe1558-6a4f-49fb-a134-ded16984f203</UserId> </UpdateGsmNotificationPermissionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>