GET api/EmailTemplateCollection?nobody={nobody}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| nobody | boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
Collection of EmailTemplate| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| SuperAffiliateId | globally unique identifier |
None. |
|
| Subject | string |
None. |
|
| Body | string |
None. |
|
| TimeStamp | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "6bd242ff-2dd5-4d2f-b17d-a9aaffcdba15",
"super-affiliate-id": "fd43fe0c-a152-414d-98a3-b0ea2ed50390",
"subject": "sample string 3",
"body": "sample string 4",
"time-stamp": "QEA="
},
{
"id": "6bd242ff-2dd5-4d2f-b17d-a9aaffcdba15",
"super-affiliate-id": "fd43fe0c-a152-414d-98a3-b0ea2ed50390",
"subject": "sample string 3",
"body": "sample string 4",
"time-stamp": "QEA="
}
]
application/xml, text/xml
Sample:
<ArrayOfEmailTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caprica.Models">
<EmailTemplate>
<Body>sample string 4</Body>
<Id>6bd242ff-2dd5-4d2f-b17d-a9aaffcdba15</Id>
<Subject>sample string 3</Subject>
<SuperAffiliateId>fd43fe0c-a152-414d-98a3-b0ea2ed50390</SuperAffiliateId>
<TimeStamp>QEA=</TimeStamp>
</EmailTemplate>
<EmailTemplate>
<Body>sample string 4</Body>
<Id>6bd242ff-2dd5-4d2f-b17d-a9aaffcdba15</Id>
<Subject>sample string 3</Subject>
<SuperAffiliateId>fd43fe0c-a152-414d-98a3-b0ea2ed50390</SuperAffiliateId>
<TimeStamp>QEA=</TimeStamp>
</EmailTemplate>
</ArrayOfEmailTemplate>