ニュースフィードカードの詳細をエクスポートする
get
/feed/details
このエンドポイントを使用して、
card_id
で識別できるカードの関連情報を取得します。
note:
ニュースフィードは非推奨になります。Braze では、News Feed ツールを使用するお客様は、コンテンツカードメッセージングチャネルに移動することを推奨しています。これは、より柔軟でカスタマイズ可能で、信頼性が高いチャネルです。詳しくはマイグレーションガイドをご覧ください。
前提条件
このエンドポイントを使用するには、API キーとfeed.details
の権限が必要です。
レート制限
API レート制限で説明されているように、このエンドポイントにはデフォルトの1時間あたり25万リクエストのBraze レート 制限が適用されます。
リクエストパラメーター
パラメータ | 必須 | データ型 | 説明 |
---|---|---|---|
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!