예정된 캠페인 및 캔버스 목록 보기
get
/messages/scheduled_broadcasts
이 엔드포인트를 사용하여 지금부터 요청에 지정된
end_time
사이에 예약된 캠페인 및 항목 캔버스에 대한 정보의 JSON 목록을 반환합니다.
매일 반복되는 메시지는 다음 번 발생 시 한 번만 표시됩니다. 이 엔드포인트에서 반환되는 결과에는 Braze 대시보드에서 생성 및 예약된 캠페인과 캔버스가 포함됩니다.
필수 구성 요소
이 엔드포인트를 사용하려면 messages.schedule_broadcasts
권한이 있는 API 키가 필요합니다.
사용량 제한
요청 매개변수
매개변수 | 필수 | 데이터 유형 | 설명 |
---|---|---|---|
end_time |
필수 | ISO-8601 형식의 문자열 | 예정된 캠페인 및 캔버스를 검색할 범위의 종료일입니다. 이는 API에서 UTC 시간 기준 자정으로 처리됩니다. |
요청 예시
1
2
curl --location --request GET 'https://rest.iad-01.braze.com/messages/scheduled_broadcasts?end_time=2018-09-01T00:00:00-04:00' \
--header 'Authorization: Bearer YOUR-REST-API-KEY'
응답
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
"scheduled_broadcasts": [
{
"name": (string) the name of the scheduled broadcast,
"id": (stings) the Canvas or campaign identifier,
"type": (string) the broadcast type either Canvas or Campaign,
"tags": (array) an array of tag names formatted as strings,
"next_send_time": (string) The next send time formatted in ISO 8601, may also include time zone if not local/intelligent delivery,
"schedule_type": (string) The schedule type, either local_time_zones, intelligent_delivery or the name of your company's time zone,
},
]
}
New Stuff!