Skip to content

하드 바운스된 이메일 조회

get

/email/hard_bounces

이 엔드포인트를 사용하여 특정 기간 내에 이메일 메시지를 ‘하드 바운스’된 이메일 주소 목록을 가져올 수 있습니다.

필수 구성 요소

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

사용량 제한

요청 매개변수

날짜 범위에 하드 바운스 횟수가 limit보다 많은 경우, 호출이 limit보다 적거나 결과가 0이 될 때까지 매번 offset을 증가시키면서 여러 번 API 호출을 수행해야 합니다. offsetlimit 매개 변수를 email과 함께 포함하면 빈 응답을 반환할 수 있습니다.

요청 예시

1
2
curl --location --request GET 'https://rest.iad-01.braze.com/email/hard_bounces?start_date=2019-01-01&end_date=2019-02-01&limit=100&offset=1&email=example@braze.com' \
--header 'Authorization: Bearer YOUR-API-KEY-HERE'

응답

항목은 내림차순으로 나열됩니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
  "emails": [
    {
      "email": (string) an email that has hard bounced,
      "unsubscribed_at": (string) the time the email hard bounced in ISO 8601
    },
    {
      "email": (string) an email that has hard bounced,
      "unsubscribed_at": (string) the time the email hard bounced in ISO 8601
    },
    {
      "email": (string) an email that has hard bounced,
      "unsubscribed_at": (string) the time the email hard bounced in ISO 8601
    }
  ],
  "message": "success"
}
이 페이지가 얼마나 도움이 되었나요?
New Stuff!