ID 보내기 만들기
post
/sends/id/create
이 엔드포인트를 사용하면 각 전송에 대한 캠페인을 만들지 않고도 프로그래밍 방식으로 메시지를 전송하고 메시지 실적을 추적하는 데 사용할 수 있는 전송 ID를 만들 수 있습니다.
보내기 식별자를 사용하여 메시지를 추적하고 전송하는 것은 프로그래밍 방식으로 콘텐츠를 생성하고 전송하려는 경우에 유용합니다.
필수 구성 요소
이 엔드포인트를 사용하려면 sends.id.create
권한으로 API 키를 생성해야 합니다.
사용량 제한
요청 본문
1
2
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
1
2
3
4
{
"campaign_id": (required, string) see campaign identifier,
"send_id": (optional, string) see send identifier
}
요청 매개변수
매개변수 | 필수 | 데이터 유형 | 설명 |
---|---|---|---|
campaign_id |
필수 | 문자열 | 캠페인 식별자를 참조하세요. |
send_id |
선택 사항 | 문자열 | 식별자 전송을 참조하세요. |
요청 예시
1
2
3
4
5
6
7
curl --location --request POST 'https://rest.iad-01.braze.com/sends/id/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR-REST-API-KEY' \
--data-raw '{
"campaign_id": "campaign_identifier",
"send_id": "send_identifier"
}'
응답
성공 응답의 예
1
2
3
4
5
6
Content-Type: application/json
Authorization: Bearer YOUR-REST-API-KEY
{
"message": "success",
"send_id" : (string) the send identifier
}
New Stuff!