GET api/notification/Email/Templates

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of EmailTemplate
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

Subject

string

None.

Contents

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "9a149ddd-7f79-46a2-bd3b-423939f72821",
    "Name": "sample string 2",
    "Subject": "sample string 3",
    "Contents": "sample string 4"
  },
  {
    "Id": "9a149ddd-7f79-46a2-bd3b-423939f72821",
    "Name": "sample string 2",
    "Subject": "sample string 3",
    "Contents": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmailTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nodus.Applications.PayLink.Models">
  <EmailTemplate>
    <Contents>sample string 4</Contents>
    <Id>9a149ddd-7f79-46a2-bd3b-423939f72821</Id>
    <Name>sample string 2</Name>
    <Subject>sample string 3</Subject>
  </EmailTemplate>
  <EmailTemplate>
    <Contents>sample string 4</Contents>
    <Id>9a149ddd-7f79-46a2-bd3b-423939f72821</Id>
    <Name>sample string 2</Name>
    <Subject>sample string 3</Subject>
  </EmailTemplate>
</ArrayOfEmailTemplate>