Adds a draft
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRTeamraiserAPI | None. | POST | Yes. |
See topic Common Parameters.
Required. The TeamRaiser event ID.
Type xsd:nonNegativeInteger.
Required. The layout ID.
Type xsd:nonNegativeInteger.
Required. Message ID
Type xsd:nonNegativeInteger.
Required. The name of the message.
Type xsd:string.
Required. The message subject.
Type xsd:string.
Optional. The message body.
Type xsd:string.
Optional. Setting to prepend personalized salutation to TAF emails
Type xsd:boolean.
Optional. The message recipients list.
Type xsd:string.
Optional. Indicates whether or not a message should be considered a permanent template.
Type xsd:boolean.
Optional. You must provide either this parameter or the sso_auth_token parameter. If using this parameter, you must specify an auth token generated by an embedded [[S86]] session tag in a Luminate Online web page.
Optional. You must provide either this parameter or the auth parameter. If using this parameter, you must specify a valid session authentication token returned by login, authenticateUser, or getSingleSignOnToken.
See topic HTTP Status Codes.
XML responseJSON response<?xml version="1.0" encoding="UTF-8"?> <addDraftResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <message> <subject>example subject</subject> <messageBody>example message body</messageBody> <messageName>example message name</messageName> <layoutId>1234</layoutId> </message> </addDraftResponse>
{"addDraftResponse":{"message":{"messageBody":"example message body","subject":"example subject","layoutId":"1234","messageName":"example message name"}}}