過去30日間の月間アクティブユーザーをエクスポート
get
/kpi/mau/data_series
このエンドポイントを使用して、30日間にわたるユニーク・アクティブ・ユーザーの総数の日次シリーズを取得します。
前提条件
このエンドポイントを使用するには、kpi.mau.data_series パーミッションを持つAPI キーが必要です。
レート制限
We apply the default Braze rate limit of 250,000 requests per hour to this endpoint, as documented in API rate limits.
リクエストパラメータ
| パラメータ | 必須 | データ型 | 説明 | 
|---|---|---|---|
length |必須|整数|返されるシリーズに含めるending_at までの最大日数。1~100の間でなければならない。 | 
      |||
ending_at |任意|日時 (ISO-8601文字列)|データシリーズが終了する日付。デフォルトはリクエスト時刻。  | 
      |||
app_id |任意|文字列|API Keysページから取得したアプリAPI識別子。除外すると、ワークスペース内のすべてのアプリの結果が返されます。 | 
      
リクエスト例
1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/kpi/mau/data_series?length=7&ending_at=2018-06-28T23:59:59-05:00&app_id={{app_identifier}}' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
応答
1
2
3
4
5
6
7
8
9
10
11
12
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
    "message": (required, string) the status of the export, returns 'success' when completed without errors,
    "data" : [
        {
            "time" : (string) the date as ISO 8601 date,
            "mau" : (int) the number of monthly active users
        },
        ...
    ]
}
 tip: 
CSVおよびAPIエクスポートに関するヘルプは、エクスポートのトラブルシューティングをご覧ください。
   Edit this page on GitHub