PUT api/Customer/UpdatePrimaryNotificationPreferences

Request Information

URI Parameters

None.

Body Parameters

UpdatePrimaryNotificationPreferencesRequestDto
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

Permission

boolean

None.

Source

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "d4ccb9c1-fcee-42b3-88ba-4ab99482fe43",
  "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>d4ccb9c1-fcee-42b3-88ba-4ab99482fe43</UserId>
</UpdatePrimaryNotificationPreferencesRequestDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UpdatePrimaryNotificationPreferencesResponseDto
NameDescriptionTypeAdditional 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>