Emails Test
Emails/ConstituentInfo/{constituentId}/Send
Queues a Constituents Info email
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Emails/ConstituentInfo/{constituentId}/Send

URI Parameters

Parameter Name Data Type Required Notes
constituentId string Y Id of the constituent.

Request Body

Request object type : SendTemplateEmailRequest

Request object type SendTemplateEmailRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
EmailAddress string Y Email address to send the rendered template to.
EmailProfileId integer Y Id of Email Profile used to send the email.
NameValues Collection of NameValue N A collection of name/value pairs to be used in the template.
TemplateId integer Y Id of template used to render HTML body.
{
  "TemplateId": 1,
  "EmailAddress": "sample string 2",
  "EmailProfileId": 3,
  "NameValues": [
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "Value": "sample string 2"
    }
  ]
}
<SendTemplateEmailRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <EmailAddress>sample string 2</EmailAddress>
  <EmailProfileId>3</EmailProfileId>
  <NameValues>
    <NameValue>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </NameValue>
    <NameValue>
      <Name>sample string 1</Name>
      <Value>sample string 2</Value>
    </NameValue>
  </NameValues>
  <TemplateId>1</TemplateId>
</SendTemplateEmailRequest>

No response body. Please check http status code header for success (200 OK) or failure. It there are error(s), a collection of ErrorMessages will be returned.

No response body. Please check http status code header for success (200 OK) or failure. It there are error(s), a collection of ErrorMessages will be returned.

Change Version Description Contract Old New
Operation Added 15.0.0 SendConstituentInfo has been added. SendConstituentInfo