Skip to content

appdata.destroyNameSpace

ServiceSDK edited this page Jan 4, 2021 · 2 revisions

gigagenie.appdata.destroyNameSpace

API 설명

  • 데이터네임스페이스 삭제 API
  • 특정 이름의 데이터네임스페이스를 삭제
  • 네임스페이스 삭제시 모든 데이터도 함께 삭제

API 구조

  • function destroyNameSpace(options,callback)
  • options
    • namespace: (String, Mandatory) 삭제할 Namespace명
  • result_cd
    • 200: 성공
    • 404: 존재하지 않는 네임스페이스임
    • 500: 시스템 Error
  • extra
    • null

사용 예시

// callback 방식
var options = {};
options.namespace = 'userappprofile';
gigagenie.appdata.destroyNameSpace(options, function (result_cd, result_msg, extra) {
    if (result_cd === 200) {
        console.log("Namespace destroy is success.");
    } else {
        console.log("Error");
    }
});
// promise 방식
var options = {};
options.namespace = 'userappprofile';
gigagenie.appdata.destroyNameSpace(options).then(function (extra) {
    console.log("Namespace destroy is success.");
}).catch(function (result_cd, result_msg, extra) {
    console.log("Namespace creation is fail.");
})

UserGuide

Clone this wiki locally