뉴스피드 카드 세부 정보 내보내기
get
/feed/details
이 엔드포인트를 사용하여 카드의 관련 정보를 검색하면
card_id
으로 식별할 수 있습니다.
important:
News Feed is being deprecated. We recommend migrating to our Content Cards messaging channel instead—it’s more flexible, customizable, and reliable. To get started, check out Migrating from News Feed.
필수 구성 요소
이 엔드포인트를 사용하려면 feed.details
권한이 있는 API 키가 필요합니다.
사용량 제한
요청 매개변수
매개변수 | 필수 | 데이터 유형 | 설명 |
---|---|---|---|
card_id |
필수 | 문자열 | 카드 API 식별자을 참조하십시오. 지정된 카드의 card_id 는 API 키 페이지와 대시보드 내 카드 세부 정보 페이지에서 찾을 수 있으며, 뉴스피드 카드 목록 엔드포인트 내보내기를 사용할 수도 있습니다. |
요청 예시
1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/feed/details?card_id={{card_identifier}}' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
응답
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
"message": (required, string) The status of the export, returns 'success' when completed without errors,
"created_at" : (string) the ate created as ISO 8601 date,
"updated_at" : (string) the ate last updated as ISO 8601 date,
"name" : (string) the card name,
"publish_at" : (string) the date the card was published as ISO 8601 date,
"end_at" : (string) the date the card will stop displaying for users as ISO 8601 date,
"tags" : (array) the tag names associated with the card,
"title" : (string) the title of the card,
"image_url" : (string) the image URL used by this card,
"extras" : (dictionary) a dictionary containing key-value pair data attached to this card,
"description" : (string) the description text used by this card,
"archived": (boolean) whether this Card is archived,
"draft": (boolean) whether this Card is a draft,
}
tip:
CSV 및 API 내보내기에 대한 도움말은 내보내기 문제 해결을 참조하세요.
New Stuff!