메시지 발송

Parameter Description

Request

Header

ex)

POST /v3/message HTTP/1.1
Content-type: application/json; charset=utf-8
Authorization: Bearer + " " + {accesstoken}

Bearer 뒤에 공백이 하나 붙음에 유의하시길 바랍니다.

Body

  • 공통

ex)

{
  /*text(20)*//*비즈뿌리오 계정*/
  "account": "",
  /*text(3)*//*메시지 타입*/
  "type": "",
  /*text(20)*//*발신 번호*/
  "from": "",
  /*text(20)*//*수신 번호*/
  "to": "",
  /*text(20)*//*국가 코드*/
  "country": "",
  /*text(20)*//*메시지 데이터*/
  "content": ""
  /*text(20)*//*고객사에서 부여한 키*/
  "refkey": "",
  /*text(20)*//*정산용 부서 코드*/
  "userinfo": "",
  /*text(20)*//*대체 전송 메시지 유형*/
  "resend": "",
  /*text(20)*//*대체 전송 메시지 데이터*/
  "recontent": "",
  /*text(20)*//*특부가 사업자 식별코드*/
  "resellercode": "",
  /*text(10)*//*발송 시간*/
  "sendtime" : ""
}

Response

Headers

HTTP/1.1 200 OK
Content-type: application/json

Body

예시)

{
  "code": 1000,
  "description": "Success",
  "refkey": "123456789012345678901234890123",
  "messagekey": "190922175225820#ft002951servj8FU67"
}

code:1000의 성공 Response는 api 성공을 뜻하며 발송 결과의 성공을 뜻하지 않으므로

발송 결과는 비즈뿌리오 실시간 결과조회 페이지의 엑셀을 다운로드 하여 확인하거나

발송 결과 리포트를 받아 확인할 수 있습니다.

Last updated