Bizppurio API manual v3.5
  • 비즈뿌리오 API 소개
  • Quick Start
  • API
    • API Rate Limit
    • 인증토큰 발급
    • 메시지 발송
      • SMS
      • LMS
      • MMS
      • 카카오톡 비즈메시지
      • RCS
      • 대체 발송
      • 국제 문자
    • File Upload
    • 발송 결과 전달
      • PUSH 방식
      • POLLING 방식
    • 발송 결과 재 요청
  • Status Code
    • API 상태코드/결과코드
    • SMS
    • LMS/MMS
    • AT/AI/FT
    • RCS
  • 개정 이력
Powered by GitBook
On this page
  1. API
  2. 메시지 발송

대체 발송

PreviousRCSNext국제 문자

Last updated 10 months ago

RESEND

메시지 발송이 실패한 경우, 대체 전송 설정

1차 대체 발송

예시 (AT 발송 실패하는 경우, SMS (1차) 대체 발송)

{
  "account": "test",
  "refkey": "test1234",
  "type": "at",
  "from": "07000000000",
  "to": "01000000000",
  "content": {
    "at": {
      "senderkey": "12345",
      "templatecode": "template",
      "message": "알림톡 + 버튼(WL)",
      "button": [
        {
          "name": "웹 링크 버튼",
          "type": "WL",
          "url_mobile": "https: //www.daou.com",
          "url_pc": "https://www.daou.com"
        }
      ]
    }
  },
  "resend": {
    "first": "sms"
  },
  "recontent": {
    "sms": {
      "message": "SMS 대체 발송"
    }
  }
}

2차 대체 발송

예시 (RCS 발송 실패하는 경우, AT (1차) 대체 발송, AT (1차) 대체 발송 실패하는 경우, SMS (2차) 대체 발송)

{
  "account": "test",
  "refkey": "test1234",
  "type": "rcs",
  "from": "07000000000",
  "to": "01000000000",
  "content": {
    "rcs": {
      "messagebaseid": "SL000000",
      "chatbotid": "15880000",
      "header": "0",
      "copyallowed": "Y",
      "message": {
        "title": "RCS LMS",
        "description": "RCS 전송"
      },
      "button": [
        {
          "suggestions": [
            {
              "action": {
                "mapAction": {
                  "requestLocationPush": {}
                },
                "displayText": "현재 위치 공유하기"
              }
            }
          ]
        }
      ]
    }
  },
  "resend": {
    "first": "at",
    "second": "sms"
  },
  "recontent": {
    "at": {
      "senderkey": "1234",
      "templatecode": "template",
      "message": "알림톡 전송",
      "button": [
        {
          "name": "웹 링크 버튼",
          "type": "WL",
          "url_mobile": "https://www.daou.com"
        }
      ]
    },
    "sms": {
      "message": "SMS 대체 발송"
    }
  }
}