Skip to content

예약된 메시지 업데이트

post

/messages/schedule/update

이 엔드포인트를 사용하여 예약된 메시지를 업데이트하세요.

이 엔드포인트를 schedule 또는 messages매개변수 또는 둘 다에 대한 업데이트를 수락합니다. 요청에는 두 키 중 하나 이상이 포함되어 있어야 합니다.

필수 구성 요소

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

사용량 제한

요청 본문

1
2
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
1
2
3
4
5
6
7
8
9
{
  "schedule_id": (required, string) the `schedule_id` to update (obtained from the response to create schedule),
  "schedule": {
    // optional, see create schedule documentation
  },
  "messages": {
    // optional, see available messaging objects documentation
  }
}

요청 매개변수

매개변수 필수 데이터 유형 설명
schedule_id 필수 문자열 업데이트할 schedule_id (일정 만들기 응답에서 얻은 값)입니다.
schedule 선택 사항 객체 일정 개체를 참조하세요.
messages 선택 사항 객체 사용 가능한 메시징 개체를 참조하세요.

요청 예시

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
curl --location --request POST 'https://rest.iad-01.braze.com/messages/schedule/update' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY' \
--data-raw '{
  "schedule_id": "schedule_identifier",
  "schedule": {
    "time": "2017-05-24T20:30:36Z"
   },
  "messages": {
    "apple_push": {
      "alert": "Updated Message!",
      "badge": 1
    },
    "android_push": {
      "title": "Updated title!",
      "alert": "Updated message!"
    },
    "sms": {  
      "subscription_group_id": "subscription_group_identifier",
      "message_variation_id": "message_variation_identifier",
      "body": "This is my SMS body.",
      "app_id": "app_identifier"
    }
  }
}'
이 페이지가 얼마나 도움이 되었나요?
New Stuff!