POST Email

Updates an email record to match the provided object.

Request Information

URI Parameters

None.

Body Parameters

Email type object to update

Email
NameDescriptionTypeAdditional information
EmailID

integer

None.

VIPID

globally unique identifier

None.

EmailAddress

string

None.

EmailStatusTypeID

integer

None.

IsActive

boolean

None.

DateCreated

date

None.

DateModified

date

None.

Request Formats

application/json, text/json

Sample:
{
  "emailID": 1,
  "vipid": "6ce7931e-11eb-4b45-8ff1-e6ccfe116f40",
  "emailAddress": "sample string 2",
  "emailStatusTypeID": 3,
  "isActive": true,
  "dateCreated": "2026-04-21T06:49:30.4944132-04:00",
  "dateModified": "2026-04-21T06:49:30.4944132-04:00"
}

text/html

Sample:
{"emailID":1,"vipid":"6ce7931e-11eb-4b45-8ff1-e6ccfe116f40","emailAddress":"sample string 2","emailStatusTypeID":3,"isActive":true,"dateCreated":"2026-04-21T06:49:30.4944132-04:00","dateModified":"2026-04-21T06:49:30.4944132-04:00"}

application/xml, text/xml

Sample:
<Email xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ContactService.Models">
  <DateCreated>2026-04-21T06:49:30.4944132-04:00</DateCreated>
  <DateModified>2026-04-21T06:49:30.4944132-04:00</DateModified>
  <EmailAddress>sample string 2</EmailAddress>
  <EmailID>1</EmailID>
  <EmailStatusTypeID>3</EmailStatusTypeID>
  <IsActive>true</IsActive>
  <VIPID>6ce7931e-11eb-4b45-8ff1-e6ccfe116f40</VIPID>
</Email>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

bool representing success or failure

integer

Response Formats

application/json, text/json, text/html

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>