PUT api/Content/v2/UpdateEmailAddress

Request Information

URI Parameters

None.

Body Parameters

APIRequestUpdateEmail
NameDescriptionTypeAdditional information
Id

integer

None.

UserUniqueId

integer

None.

UniqueId

globally unique identifier

None.

CustomerId

integer

None.

EmailAddress

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserUniqueId": 2,
  "UniqueId": "1c19dcb1-625e-4aa2-a6e8-d0f1e16530ff",
  "CustomerId": 4,
  "EmailAddress": "sample string 5"
}

application/xml, text/xml

Sample:
<APIRequestUpdateEmail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <CustomerId>4</CustomerId>
  <EmailAddress>sample string 5</EmailAddress>
  <Id>1</Id>
  <UniqueId>1c19dcb1-625e-4aa2-a6e8-d0f1e16530ff</UniqueId>
  <UserUniqueId>2</UserUniqueId>
</APIRequestUpdateEmail>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResult
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<APIResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model">
  <Message>sample string 2</Message>
  <Status>true</Status>
</APIResult>