PUT api/Content/v2/UpdateEmailAddress
Request Information
URI Parameters
None.
Body Parameters
APIRequestUpdateEmail| Name | Description | Type | Additional 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": "139f3779-329f-42be-b619-49d601d270e4",
"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/"> <CustomerId>4</CustomerId> <EmailAddress>sample string 5</EmailAddress> <Id>1</Id> <UniqueId>139f3779-329f-42be-b619-49d601d270e4</UniqueId> <UserUniqueId>2</UserUniqueId> </APIRequestUpdateEmail>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResult| Name | Description | Type | Additional 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>