이 페이지는 AI로 자동 번역되었으며 부정확한 내용이 포함될 수 있습니다. 번역 오류를 신고하려면 페이지 오른쪽 목차 아래에 있는 피드백 기능을 사용하세요.
콘텐츠 카드 오브젝트
content_card오브젝트를 사용하면 메시징 엔드포인트를 통해 Content Cards를 생성할 수 있습니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"type": (required, string) one of "CLASSIC", "CAPTIONED_IMAGE", or "BANNER",
"title": (required, string) the card's title. Not applicable for "BANNER". Accepts an empty string,
"description": (required, string) the card's description. Not applicable for "BANNER",
"message_variation_id": (optional, string) used when providing a campaign_id to specify which message variation this message should be tracked under (must be a Content Card Message),
"pinned": (optional, boolean) whether the card is pinned. Defaults to false,
"image_url": (optional, string) the card's image URL. Required for "CAPTIONED_IMAGE" and "BANNER",
"time_to_live": (optional, integer) the number of seconds before the card expires. You must include either "time_to_live" or "expire_at",
"expire_at": (optional, string) ISO 8601 date when the card expires. You must include either "time_to_live" or "expire_at", a maximum expiration time exists of 30 days,
"expire_in_local_time": (optional, boolean) if using "expire_at", determines whether the card should expire in users' local time. Defaults to false,
"ios_uri": (optional, string) a web URL, or Deep Link URI,
"android_uri": (optional, string) a web URL, or Deep Link URI,
"web_uri": (optional, string) a web URL, or Deep Link URI,
"ios_use_webview": (optional, boolean) whether to open the web URL inside the app, defaults to true,
"android_use_webview": (optional, boolean) whether to open the web URL inside the app, defaults to true,
"uri_text": (optional, string) the card's link text,
"extra": (optional, object) additional keys and values sent with the card,
}

중요
현재 Braze는 최대 만료 시간을 30일로 지원합니다.
New Stuff!