Get details for a specific email template
Use the following endpoint to receive details pertaining to a specific email template on this platform.
Endpoint | Purpose |
---|---|
GET /{URI}/emailTemplates/{etid} | Get details for a specific Email Template on this Platform. |
Here is the path parameter for when you use GET /{URI}/emailTemplates/{etid}
to get details for a specific Email Template on this platform.:
Parameter | Data type | Description |
---|---|---|
etid | string | (Required) Email Template Identifier (ETID) is returned in the email template response payload. |
See the payload example below:
{
"etid": "string",
"name": "string",
"fromName": "string",
"subject": "string",
"headerImage": "string",
"headerImageAltText": "string",
"accentColor": "string",
"messageBody": "string",
"closing": "string",
"customerServiceMessage": "string",
"accessControls": [
{
"type": "PLATFORM",
"identifier": "string"
}
],
"defaults": [
{
"type": "PLATFORM",
"identifier": "string"
}
]
}
The response message for this endpoint is:
- 200 OK
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
- 404 Not Found
Updated 4 days ago