Skip to content

ニュースフィードカードのエクスポート一覧

get

/feed/list

このエンドポイントを使用して、ニュースフィードカードの一覧をエクスポートします。それぞれの一覧には、名前とカード API 識別子が含まれます。

カードs は、作成時刻(デフォルトで最も古いものから最新のもの) でソートされた100 の集合で返されます。

前提条件

このエンドポイントを使用するには、API キーfeed.listの権限が必要です。

レート制限

API レート制限で説明されているように、このエンドポイントにはデフォルトの1時間あたり25万リクエストのBraze レート 制限が適用されます。

リクエストパラメーター

例のリクエスト

1
2
curl --location --request GET 'https://rest.iad-01.braze.com/feed/list?page=1&include_archived=true&sort_direction=desc' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

応答

1
2
3
4
5
6
7
8
9
10
11
12
13
14
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
    "message": (required, string) the status of the export, returns 'success' when completed without errors,
    "cards" : [
        {
            "id" : (string) the card API identifier,
            "type" : (string) type of the card - NewsItem (classic cards), CaptionedImage, Banner
            "title" : (string) the title of the card,
            "tags" : (array) the tag names associated with the card
        },
        ...
    ]
}
「このページはどの程度役に立ちましたか?」
New Stuff!