Skip to content

날짜별 일일 활성 사용자 내보내기

get

/kpi/dau/data_series

이 엔드포인트를 사용하여 각 날짜의 총 고유 활성 사용자 수에 대한 일일 시계열을 검색합니다.

필수 구성 요소

이 엔드포인트를 사용하려면 kpi.dau.data_series 권한이 있는 API 키가 필요합니다.

사용량 제한

요청 매개변수

요청 예시

1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/kpi/dau/data_series?length=10&ending_at=2018-06-28T23:59:59-5: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,
            "dau" : (int) the number of daily active users
        },
        ...
    ]
}
이 페이지가 얼마나 도움이 되었나요?
New Stuff!