국가별 메시지 가격 리스트 가져오기

Request

GET https://api.coolsms.co.kr/pricing/v1/messaging/countries

로그인한 계정의 국가별 메시지 가격 리스트를 가져옵니다. (로그인 안하면 기본 단가)

Query Params

Name

Type

Required

Description

countryId

string

eq

국가 코드

offset

number

eq

시작점

limit

number

eq

조회할 개수

Samples

getMessagePriceList.spec.js

Sample Request

http://api.coolsms.co.kr/pricing/v1/messaging/countries

Sample Response

[
    {
        "countryName": "Korea, South",
        "countryId": "82",
        "sms": 20,
        "lms": 50,
        "mms": 200,
        "ata": 19,
        "cta": 13,
        "cti": 20,
        "dateCreated": "2019-10-28T18:03:40.761Z",
        "dateUpdated": "2019-10-28T18:03:40.761Z"
    },
    {
        "countryName": "Lithuania",
        "countryId": "370",
        "sms": 94,
        "lms": 500,
        "mms": 1000,
        "ata": 19,
        "cta": 13,
        "cti": 20,
        "dateCreated": "2019-10-28T18:03:40.760Z",
        "dateUpdated": "2019-10-28T18:03:40.760Z"
    },
    {
        "countryName": "Turkmenistan",
        "countryId": "993",
        "sms": 94,
        "lms": 500,
        "mms": 1000,
        "ata": 19,
        "cta": 13,
        "cti": 20,
        "dateCreated": "2019-10-28T18:03:40.758Z",
        "dateUpdated": "2019-10-28T18:03:40.758Z"
    },
    {
        "countryName": "Sao Tome and Principe",
        "countryId": "239",
        "sms": 271,
        "lms": 500,
        "mms": 1000,
        "ata": 19,
        "cta": 13,
        "cti": 20,
        "dateCreated": "2019-10-28T18:03:40.757Z",
        "dateUpdated": "2019-10-28T18:03:40.757Z"
    },
    {
        "countryName": "East Timor",
        "countryId": "670",
        "sms": 180,
        "lms": 500,
        "mms": 1000,
        "ata": 19,
        "cta": 13,
        "cti": 20,
        "dateCreated": "2019-10-28T18:03:40.755Z",
        "dateUpdated": "2019-10-28T18:03:40.755Z"
    }
]

Sample Code

var request = require('request');

var options = {
  method: 'GET',
  json: true,
  url: 'http://api.coolsms.co.kr/pricing/v1/messaging/countries'
};

request(options, function(error, response, body) {
  if (error) throw error;
  console.log('result :', body);
});

문서 생성일 : 2019-10-28

Last updated