POLLING 방식
발송 결과 요청
POST /v1/result/request HTTP/1.1
Content-type: application/json; charset=utf-8
Authorization: Bearer {accesstoken}Request


Response


발송 결과 완료 처리
Request

Response

Last updated
POST /v1/result/request HTTP/1.1
Content-type: application/json; charset=utf-8
Authorization: Bearer {accesstoken}





Last updated
{
"code": "1000",
"description": "success",
"report": [
{
"device": "SMS",
"cmsgid": "201027134355944sms027420servqer0",
"msgid": "1027se_SL4676027383600490148",
"phone": "01000000000",
"media": "SMS",
"unixtime": "1603773837",
"result": "4100",
"userdata": "daoutech",
"wapinfo": "SKT",
"refkey": "test1234"
},
{
"device": "SMS",
"cmsgid": "201027134355944sms027420servqer0",
"msgid": "1027se_SL4676027383600490148",
"phone": "01000000000",
"media": "SMS",
"unixtime": "1603773837",
"result": "4100",
"userdata": "daoutech",
"wapinfo": "SKT",
"refkey": "test1234"
}
]
}POST /v1/result/confirm HTTP/1.1
Content-type: application/json
Authorization: Bearer + " " + {accesstoken}{
"account": "test",
"msgid": [
{
"msgid": "1027se_SL4676027383600490148"
},
{
"msgid": "1027se_SL4676027383600490149"
}
]
}HTTP/1.1 200 OK
Content-type: application/json{
"code": 1000,
"description": "Success"
}