API 상품보기

대용량 SMS API
API STORE │ 메시지 │ 유료
문자메시지 등 다양한 타입의 메시지를 인터넷이나 전용선으로 연결된 클라이언트의 컴퓨터에서 발송 시 각 이동통신망을 통해 사용자에게 전송하는 시스템입니다. [주요기능] 1. SMS G/W 자체 개발 및 운영 - 시스템 안정성 확보 - 다양한 플랫폼 지원 가능 - 고객사 모니터링 알람 기능 제공 2. 이동통신 3사 Direct 연동 - 서비스 품질 보장 - 정확한 전송 결과 확인 3. 다양한 서비스 제공 - 통합 API 제공으로 SMS, MMS, LMS 전송 가능 4. 시스템 안정화 - 시스템 이중화 처리 - 시스템 보안 처리
- End Point 기본그룹
- POSTSMS
- POSTLMS
- POSTMMS
- GETREPORT
- GETBALANCE
- GETDEPOSIT
POST{apiVersion}/message/sms/{id}
SMS - 단문메시지(SMS) 전송 서비스(90byte이하)
curl –i - X POST
- H x-waple-authorization : 고객 키
// console 에서 직접 입력하여 사용 가능합니다.
HttpResponse response = Unirest.POST ("http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}")
.header("x-waple-authorization", "고객 키")
.field("send_time", "20130529171111")
.field("dest_phone", "01011112222")
.field("dest_name", "홍길동")
.field("send_phone", "01033334444")
.field("send_name", "홍길순")
.field("subject", "제목")
.field("msg_body", "내용")
.asJson();
// These code snippets use an open-source library.
HttpResponse response = Unirest.POST ("http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}")
.header("x-waple-authorization", "고객 키")
.field("send_time", "20130529171111")
.field("dest_phone", "01011112222")
.field("dest_name", "홍길동")
.field("send_phone", "01033334444")
.field("send_name", "홍길순")
.field("subject", "제목")
.field("msg_body", "내용")
.end(function (result) {
console.log(result.status, result.headers, result.body);
});
response = Unirest.POST "http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}",
headers:{:"x-waple-authorization" => "고객 키"},
parameters:{
:send_time => "20130529171111" ,
:dest_phone => "01011112222" ,
:dest_name => "홍길동" ,
:send_phone => "01033334444" ,
:send_name => "홍길순" ,
:subject => "제목" ,
:msg_body => "내용" }
org.springframework.web.filter.ShallowEtagHeaderFilter$ShallowEtagResponseWrapper@543ed2e6 = Unirest::POST ("http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}",
array(
"x-waple-authorization" => "고객 키"
),
array(
send_time => "20130529171111" ,
dest_phone => "01011112222" ,
dest_name => "홍길동" ,
send_phone => "01033334444" ,
send_name => "홍길순" ,
subject => "제목" ,
msg_body => "내용" )
);
response = Unirest.POST ("http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}",
headers={"x-waple-authorization": "고객 키"},
params={
send_time:"20130529171111" ,
dest_phone:"01011112222" ,
dest_name:"홍길동" ,
send_phone:"01033334444" ,
send_name:"홍길순" ,
subject:"제목" ,
msg_body:"내용" }
)
NSDictionary *headers = @{@"x-waple-authorization": @"고객 키"};
NSDictionary *parameters = @{
@send_time: @"20130529171111",
@dest_phone: @"01011112222",
@dest_name: @"홍길동",
@send_phone: @"01033334444",
@send_name: @"홍길순",
@subject: @"제목",
@msg_body: @"내용"};
UNIUrlConnection *asyncConnection = [[UNIRest POST :^(UNISimpleRequest *request) {
[request setUrl:@"http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}"];
[request setHeaders:headers];
[request setParameters:parameters];
}] asJsonAsync:^(UNIHTTPJsonResponse *response, NSError *error) {
NSInteger code = response.code;
NSDictionary *responseHeaders = response.headers;
UNIJsonNode *body = response.body;
NSData *rawBody = response.rawBody;
}];
Task> response = Unirest.POST ("http://api.apistore.co.kr/ppurio/{apiVersion}/message/sms/{id}")
.header("x-waple-authorization", "고객 키")
.field(send_time, "20130529171111")
.field(dest_phone, "01011112222")
.field(dest_name, "홍길동")
.field(send_phone, "01033334444")
.field(send_name, "홍길순")
.field(subject, "제목")
.field(msg_body, "내용")
.asJson();
이 code snippet은 unirest.의 Open source Client Library를 사용하고 있습니다.
더 자세한 정보가 필요할 경우 unirest.io 페이지를 방문하세요.
더 자세한 정보가 필요할 경우 unirest.io 페이지를 방문하세요.