PUT api/Customer/UpdatePrimaryNotificationPreferencesAsync
Request Information
URI Parameters
None.
Body Parameters
UpdatePrimaryNotificationPreferencesRequestDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Permission | boolean |
None. |
|
| Source | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "3326da3c-95d9-425f-9be7-e3e624cc8658",
"Permission": true,
"Source": "sample string 3"
}
application/xml, text/xml
Sample:
<UpdatePrimaryNotificationPreferencesRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <Permission>true</Permission> <Source>sample string 3</Source> <UserId>3326da3c-95d9-425f-9be7-e3e624cc8658</UserId> </UpdatePrimaryNotificationPreferencesRequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UpdatePrimaryNotificationPreferencesResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true
}
application/xml, text/xml
Sample:
<UpdatePrimaryNotificationPreferencesResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Success>true</Success> </UpdatePrimaryNotificationPreferencesResponse>