이메일 템플릿 정보를 참조하십시오
get
/templates/email/info
이 엔드포인트를 사용하여 이메일 템플릿에 대한 정보를 얻으십시오.
important:
이메일을 위한 드래그 앤 드롭 편집기를 사용하여 작성된 템플릿은 허용되지 않습니다.
필수 구성 요소
이 엔드포인트를 사용하려면 templates.email.info
권한이 있는 API 키가 필요합니다.
사용량 제한
요청 매개변수
매개변수 | 필수 | 데이터 유형 | 설명 |
---|---|---|---|
email_template_id |
필수 | 문자열 | 이메일 템플릿 API 식별자을 참조하십시오. |
요청 예시
1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/templates/email/info?email_template_id={{email_template_id}}' \
--header 'Authorization: Bearer YOUR_REST_API_KEY'
응답
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Content-Type: application/json
Authorization: Bearer YOUR_REST_API_KEY
{
"email_template_id": (string) Your email template's API Identifier,
"template_name": (string) The name of your email template,
"description": (string) The email template description,
"subject": (string) The email template subject line,
"preheader": (optional, string) The email preheader used to generate previews in some clients),
"body": (optional, string) The email template body that may include HTML,
"plaintext_body": (optional, string) A plaintext version of the email template body,
"should_inline_css": (optional, boolean) Whether there is inline CSS in the body of the template - defaults to the css inlining value for the workspace,
"tags": (string) Tag names,
"created_at": (string) The time the email was created at in ISO 8601,
"updated_at": (string) The time the email was updated in ISO 8601
}
이 응답의 이미지는 body
변수에 HTML로 표시됩니다.
New Stuff!