Skip to content

사용자 지정 이벤트 목록 내보내기

get

/events/list

이 엔드포인트를 사용하여 앱에 대해 기록된 커스텀 이벤트 목록을 내보낼 수 있습니다. 이벤트 이름은 알파벳순으로 정렬된 250개 그룹으로 반환됩니다.

필수 구성 요소

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

사용량 제한

요청 매개변수

요청 예시

1
2
curl --location --request GET 'https://rest.iad-01.braze.com/events/list?page=3' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'

응답

1
2
3
4
5
6
7
8
9
10
11
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
    "message": (required, string) the status of the export, returns 'success' when completed without errors,
    "events" : [
        "Event A", (string) the event name,
        "Event B", (string) the event name,
        "Event C", (string) the event name,
        ...
    ]
}

치명적인 오류 응답 코드

요청에 심각한 오류가 발생할 경우 반환되는 상태 코드 및 관련 오류 메시지는 심각한 오류 및 응답을 참조하세요.

이 페이지가 얼마나 도움이 되었나요?
New Stuff!