Skip to content

뉴스피드 카드 분석 내보내기

get

/feed/data_series

이 엔드포인트를 사용하여 시간 경과에 따른 카드의 일별 인게이지먼트 통계를 검색할 수 있습니다.

필수 구성 요소

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

사용량 제한

요청 매개변수

요청 예시

1
2
curl --location -g --request GET 'https://rest.iad-01.braze.com/feed/data_series?card_id={{card_identifier}}&length=14&unit=day&ending_at=2018-06-28T23:59:59-5:00' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

응답

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 point in time - as ISO 8601 extended when unit is "hour" and as ISO 8601 date when unit is "day",
            "clicks" : (int) the number of clicks,
            "impressions" : (int) the number of impressions,
            "unique_clicks" : (int) the number of unique clicks,
            "unique_impressions" : (int) the number of unique impressions
        },
        ...
    ]
}
이 페이지가 얼마나 도움이 되었나요?
New Stuff!