GET api/emailtemplate/template

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

EmailTemplate
NameDescriptionTypeAdditional information
Name

string

None.

Type

string

None.

Description

string

None.

Html

string

None.

Id

globally unique identifier

None.

CreatedDate

date

None.

ModifiedDate

date

None.

DeletedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Type": "sample string 2",
  "Description": "sample string 3",
  "Html": "sample string 4",
  "Id": "8d0333fa-69e2-4419-be41-2b5cc5235429",
  "CreatedDate": "2025-12-05T20:24:05.6334073-08:00",
  "ModifiedDate": "2025-12-05T20:24:05.6334073-08:00",
  "DeletedDate": "2025-12-05T20:24:05.6334073-08:00"
}

application/xml, text/xml

Sample:
<EmailTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QuicDoctor.Data.Data">
  <CreatedDate>2025-12-05T20:24:05.6334073-08:00</CreatedDate>
  <DeletedDate>2025-12-05T20:24:05.6334073-08:00</DeletedDate>
  <Id>8d0333fa-69e2-4419-be41-2b5cc5235429</Id>
  <ModifiedDate>2025-12-05T20:24:05.6334073-08:00</ModifiedDate>
  <Description>sample string 3</Description>
  <Html>sample string 4</Html>
  <Name>sample string 1</Name>
  <Type>sample string 2</Type>
</EmailTemplate>