Skip to content

セグメントリストをエクスポートする

get

/segments/list

このエンドポイントを使用して、名前、セグメント API 識別子、分析の追跡が有効かどうかがそれぞれに含まれているセグメントのリストをエクスポートします。

セグメントは100のグループに分けられ、作成日順にソートされて返される(デフォルトでは古いものから新しいものへ)。アーカイブされたセグメントは含まれません。

前提条件

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

レート制限

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

リクエストパラメーター

例のリクエスト

1
2
curl --location --request GET 'https://rest.iad-01.braze.com/segments/list?page=1&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,
    "segments" : [
        {
            "id" : (string) the Segment API identifier,
            "name" : (string) segment name,
            "analytics_tracking_enabled" : (boolean) whether the segment has analytics tracking enabled,
            "tags" : (array) the tag names associated with the segment formatted as strings
        },
        ...
    ]
}
「このページはどの程度役に立ちましたか?」
New Stuff!