GET api/Admin/AutoresponderTemplate/GetByAutoresponderTemplateID?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

AutoresponderTemplateWithTags
NameDescriptionTypeAdditional information
AutoresponderTemplateID

integer

None.

AutoresponderTypeID

integer

None.

LocaleID

integer

None.

LocaleCollectionID

integer

None.

Locale

string

None.

EmailFrom

string

None.

EmailCC

string

None.

EmailBCC

string

None.

EmailReplyTo

string

None.

EmailPriority

integer

None.

Subject

string

None.

IsHtmlPreferredFormat

boolean

None.

IsActive

boolean

None.

TextMessage

string

None.

HTMLMessage

string

None.

Description

string

None.

DeliveryTypeID

integer

None.

EmailTo

string

None.

IsFormattedByThirdParty

boolean

None.

ReplaceTags

Collection of IAutoresponderField

None.

Response Formats

application/xml, text/xml

Sample:
<AutoresponderTemplateWithTags>
  <AutoresponderTemplateID>1</AutoresponderTemplateID>
  <AutoresponderTypeID>2</AutoresponderTypeID>
  <LocaleID>1</LocaleID>
  <LocaleCollectionID>1</LocaleCollectionID>
  <Locale>sample string 3</Locale>
  <EmailFrom>sample string 4</EmailFrom>
  <EmailCC>sample string 5</EmailCC>
  <EmailBCC>sample string 6</EmailBCC>
  <EmailReplyTo>sample string 7</EmailReplyTo>
  <EmailPriority>1</EmailPriority>
  <Subject>sample string 8</Subject>
  <IsHtmlPreferredFormat>True</IsHtmlPreferredFormat>
  <IsActive>True</IsActive>
  <TextMessage>sample string 11</TextMessage>
  <HTMLMessage>sample string 12</HTMLMessage>
  <Description>sample string 13</Description>
  <DeliveryTypeID>1</DeliveryTypeID>
  <EmailTo>sample string 14</EmailTo>
  <IsFormattedByThirdParty>True</IsFormattedByThirdParty>
  <ReplaceTags />
</AutoresponderTemplateWithTags>

application/json, text/json

Sample:
{
  "AutoresponderTemplateID": 1,
  "AutoresponderTypeID": 2,
  "LocaleID": 1,
  "LocaleCollectionID": 1,
  "Locale": "sample string 3",
  "EmailFrom": "sample string 4",
  "EmailCC": "sample string 5",
  "EmailBCC": "sample string 6",
  "EmailReplyTo": "sample string 7",
  "EmailPriority": 1,
  "Subject": "sample string 8",
  "IsHtmlPreferredFormat": true,
  "IsActive": true,
  "TextMessage": "sample string 11",
  "HTMLMessage": "sample string 12",
  "Description": "sample string 13",
  "DeliveryTypeID": 1,
  "EmailTo": "sample string 14",
  "IsFormattedByThirdParty": true
}