Skip to content

유효하지 않은 전화번호 조회

get

/sms/invalid_phone_numbers

이 엔드포인트를 사용하여 특정 기간 내에 ‘유효하지 않음’으로 표시된 전화번호 목록을 가져올 수 있습니다. 자세한 내용은 유효하지 않은 전화번호 처리 문서를 참조하세요.

필수 구성 요소

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

사용량 제한

요청 매개변수

날짜 범위에 유효하지 않은 전화번호가 limit 개수보다 많은 경우, 매번 offset을 늘려서 호출할 때마다 limit보다 적거나 결과가 0이 될 때까지 여러 번 API 호출을 수행해야 합니다.

요청 예시

1
2
curl --location --request GET 'https://rest.iad-01.braze.com/sms/invalid_phone_numbers?start_date=2019-01-01&end_date=2019-02-01&limit=100&offset=1&phone_numbers[]=12345678901' \
--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
20
21
22
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
  "sms": [
    {
      "phone": (string) phone number in e.164 format,
      "invalid_detected_at": (string) the time the invalid number was detected in ISO 8601
      "reason" : "provider_error"
    },
    {
      "phone": (string) phone number in e.164 format,
      "invalid_detected_at": (string) the time the invalid number was detected in ISO 8601
      "reason" : "deactivated"
    },
    {
      "phone": (string) phone number in e.164 format,
      "invalid_detected_at": (string) the time the invalid number was detected in ISO 8601
      "reason" : "provider_error"
    }
  ],
  "message": "success"
}
이 페이지가 얼마나 도움이 되었나요?
New Stuff!