Skip to content

payment.getOtvSaid

ServiceSDK edited this page Jan 13, 2021 · 2 revisions

gigagenie.payment.getOtvSaid

API 설명

  • OTV 가입 정보 조회 API
  • OTV 가입자의 SAID를 조회함
  • 권한이 있는 appid 만 조회 가능(사업 제휴 및 약관 동의 등이 필요)

API 구조

  • function getOtvSaid(options,callback)
  • options
    • null
  • result_cd
    • 200: 성공
    • 401: 권한 없음
    • 404: SAID 존재하지 않음(미가입자)
    • 500: 시스템 Error
  • extra
    • said: (String) OTV SAID 값

사용 예시

// callback 방식
var options = {};
gigagenie.payment.getOtvSaid(options, function (result_cd, result_msg, extra) {
    if (result_cd === 200) {
        console.log("SAID: " + extra.said);
    } else {
        console.log("reqPayToken Fail");
    }
});

UserGuide

Clone this wiki locally