PUT api/Customer/UpdatePrimaryNotificationPreferences
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": "0fe5e2cd-9423-4fd9-bd4c-3ebfa59ee266",
"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>0fe5e2cd-9423-4fd9-bd4c-3ebfa59ee266</UserId> </UpdatePrimaryNotificationPreferencesRequestDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
UpdatePrimaryNotificationPreferencesResponseDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true
}
application/xml, text/xml
Sample:
<UpdatePrimaryNotificationPreferencesResponseDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Success>true</Success> </UpdatePrimaryNotificationPreferencesResponseDto>