Wisetracker Docs
웹사이트블로그콘솔 바로가기도입 문의이용 문의
🧑‍💻 개발자 가이드
🧑‍💻 개발자 가이드
  • 와이즈트래커 개발자 가이드
  • quick start
    • 앱 광고 트래킹을 위한 필수 지식
    • SDK 설정 전 기초 진단
    • SDK 설정 후 체크리스트
      • Android
      • iOS
      • ReactNative
      • Flutter
      • Unity
      • Cordova
      • Cocos2d-x
      • Web
    • SDK 데이터 검증
    • 이벤트 발생 현황
  • SDK 연동
    • Android
      • SDK 삽입
      • 필수 이벤트 설정
      • App Link 설정
      • Android 12 ADID 변경사항
    • iOS
      • SDK 삽입
      • 필수 이벤트 설정
      • App Store '개인정보 세부 사항' 가이드
      • Universal Link 설정
    • HybridApp WebView
      • SDK 삽입
      • 필수 이벤트 설정
    • React Native
      • React Native 플러그인 연동
      • 인앱 분석 API
      • AOS 데이터 검증
      • iOS 데이터 검증
    • Flutter
      • Flutter 플러그인 연동
      • AOS 데이터 검증
      • iOS 데이터 검증
    • Unity
      • Unity 플러그인 연동
      • 인앱 이벤트 API
      • AOS 데이터 검증
      • iOS 데이터 검증
    • Website
      • Javascript SDK Integration
      • 웹사이트 이벤트 분석하기
    • CPC 광고 분석 연동
      • Web-To-App SDK 적용
      • App 으로 이동시키기
  • 앱심사 개인정보 처리 가이드
    • SDK 개인정보 처리 가이드
  • SDK 데이터 검증
    • Android 데이터 검증
    • iOS 데이터 검증
    • 웹사이트 데이터 검증
  • In-App Event
    • 인앱 이벤트 설정
      • 페이지 분석
      • 커스텀 차원(Custom Dimension)
    • 인앱 이벤트 리스트
      • Basic : 공통 이벤트
      • Messaging : 푸시/인앱 메시지
      • e-Commerce : 이커머스
      • Education : 교육
      • Travel : 여행 및 레저
      • Entertainment : 엔터테인먼트
      • Game : 게임
      • Fintech : 금융
      • Mobility : 모빌리티
    • 인앱 이벤트 태깅(Tagging)
  • Google Tag Manager 연동
    • 연동 방법
  • Server-to-Server 연동
    • 연동 방법
    • 연동 이벤트
    • 연동 데이터 요약
  • 푸시메세지 가이드
    • 앱 푸시메시지 연동
      • Android
        • FCM 인증서 설정
        • 대시보드 설정
        • SDK 설치 및 API 적용
        • 푸시 알림 데이터 이용
      • iOS
        • APNS 설정
        • 대시보드 설정
        • SDK 설치 및 API 적용
        • 푸시 알림 데이터 이용
      • React Native
        • 준비 사항 안내
        • Android 기초 설정
        • iOS 기초 설정
        • ReactNative 푸시메세지 설정
      • Flutter
        • 준비 사항 안내
        • Android 기초 설정
        • iOS 기초 설정
        • Flutter 푸시메세지 설정
    • 푸시 알림 데이터 이용
Powered by GitBook
On this page
  • 본인인증
  • 신용정보 조회
  • 신청 접수
  • 신청 승인
  • 계좌 연동
  • 신규회원 계좌 개설
  • 기존회원 계좌 개설
  • 송금
  • 환전
  • 보험 가입
  • 투자
  • 대출 신청서 작성
  • 대출 신청
  • 대출 승인
  • 대출 거절
  • 대출 상환
  • 대출 최종상환 완료
  • 회원 탈퇴

Was this helpful?

  1. In-App Event
  2. 인앱 이벤트 리스트

Fintech : 금융

금융 앱에서 측정을 권장하는 인앱 이벤트 API와 적용 예시를 안내합니다.

PreviousGame : 게임NextMobility : 모빌리티

Last updated 16 days ago

Was this helpful?

속성 중 Key 이름은 가이드에 나와있는 Key 이름을 그대로 사용 해 주세요. (임의로 변경시 대시보드에서 데이터 확인이 어렵습니다. > account_type, company_a 등)

본인인증

본인인증이 완료되는 시점에 아래 코드를 추가합니다.

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_authenticate");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_authenticate"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_authenticate"
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_authenticate" forKey:@"event"];
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_authenticate";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_authenticate";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_authenticate";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_authenticate"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_authenticate"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	event : "w_authenticate"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_authenticate");
DOT.logEvent(eventDic);

신용정보 조회

유저가 조회한 신용정보가 출력된 시점에 아래 코드를 추가합니다.

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_check_credit_info");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_check_credit_info"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_check_credit_info"
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_check_credit_info" forKey:@"event"];
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_check_credit_info";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_check_credit_info";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_check_credit_info";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_check_credit_info"
            }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_check_credit_info"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
    	event : "w_check_credit_info"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_check_credit_info");
DOT.logEvent(eventDic);

신청 접수

신청 접수가 완료된 시점에 아래 코드를 추가합니다.

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_submit_registration");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_submit_registration"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_submit_registration"
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_submit_registration" forKey:@"event"];
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_submit_registration";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_submit_registration";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_submit_registration";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_submit_registration"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_submit_registration"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
        event : "w_submit_registration"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_submit_registration");
DOT.logEvent(eventDic);

신청 승인

신청한 접수가 승인 완료된 시점에 아래 코드를 추가합니다.

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_registration_approved");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_registration_approved"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_registration_approved"
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_registration_approved" forKey:@"event"];
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_registration_approved";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_registration_approved";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_registration_approved";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_registration_approved"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_registration_approved"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
    	event : "w_registration_approved"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_registration_approved");
DOT.logEvent(eventDic);

계좌 연동

계좌가 연동 완료된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

account_type

예금

string

연동된 계좌 유형

company_a

KB국민은행

string

연동된 금융사

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_link_account");
eventMap.put("account_type", "예금");
eventMap.put("company_a", "KB국민은행");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_link_account"
eventMap["account_type"] = "예금"
eventMap["company_a"] = "KB국민은행"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_link_account"
event["account_type"] = "예금"
event["company_a"] = "KB국민은행"
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_link_account" forKey:@"event"];
[event setValue:@"예금" forKey:@"account_type"];
[event setValue:@"KB국민은행" forKey:@"company_a"];
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_link_account";
    event["account_type"] = "예금";
    event["company_a"] = "KB국민은행";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_link_account";
    event["account_type"] = "예금";
    event["company_a"] = "KB국민은행";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_link_account";
event["account_type"] = "예금";
event["company_a"] = "KB국민은행";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_link_account",
              account_type : "예금",
              company_a : "KB국민은행"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_link_account",
    account_type : "예금",
    company_a : "국민은행"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	    event : "w_link_account",
	    account_type : "예금",
	    company_a : "국민은행"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_link_account");
eventDic.Add("account_type", "예금");
eventDic.Add("company_a", "KB국민은행");
DOT.logEvent(eventDic);

신규회원 계좌 개설

신규회원이 계좌를 개설한 시점에 아래 코드를 추가합니다.

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_open_account_complete_new");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_open_account_complete_new"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_open_account_complete_new"
DOT.logEvent(event)
NSMutableDictionary *screen = [[NSMutableDictionary alloc] init];
[screen setValue:@"w_open_account_complete_new" forKey:@"event"];
[DOT logScreen:screen];
    var event = new Object();
    event["event"] = "w_open_account_complete_new";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_open_account_complete_new";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_open_account_complete_new";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_open_account_complete_new"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_open_account_complete_new"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
   	 event : "w_open_account_complete_new"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_open_account_complete_new");
DOT.logEvent(eventDic);

기존회원 계좌 개설

기존회원이 계좌를 개설한 시점에 아래 코드를 추가합니다.

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_open_account_complete");
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_open_account_complete"
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_open_account_complete"
DOT.logEvent(event)
NSMutableDictionary *screen = [[NSMutableDictionary alloc] init];
[screen setValue:@"w_open_account_complete" forKey:@"event"];
[DOT logScreen:screen];
    var event = new Object();
    event["event"] = "w_open_account_complete";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_open_account_complete";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_open_account_complete";
DOT.logEvent(event);

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_open_account_complete"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_open_account_complete"
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
    	event : "w_open_account_complete"
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_open_account_complete");
DOT.logEvent(eventDic);

송금

송금이 완료된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

transaction_id

WR9492003

string

송금번호

currency

KRW

string

통화코드

company_a

ID04002

string

입금받는 금융사 명칭 또는 고유번호

quantity

1

integer

송금 횟수

revenue

215000

double

송금액

Map<String, Object> purchaseMap = new HashMap<>();
purchaseMap.put("transaction_id", "WR9492003");
purchaseMap.put("currency", "KRW");
Map<String, Object> productMap = new HashMap<>();
productMap.put("company_a", "ID04002");
productMap.put("quantity", 1);
productMap.put("revenue", 215000);
purchaseMap.put("product", productMap);
DOT.logPurchase(purchaseMap);
val purchaseMap = mutableMapOf<String,Any>()
purchaseMap["transaction_id"] = "WR9492003"
purchaseMap["currency"] = "KRW"
val productMap = mutableMapOf<String,Any>()
productMap["company_a"] = "ID04002"
productMap["evquantityent"] = 1
productMap["revenue"] = 215000
purchaseMap["product"] = productMap
DOT.logPurchase(purchaseMap)
let purchase = NSMutableDictionary()
purchase["transaction_id"] = "WR9492003"
purchase["currency"] = "KRW"
var product : [String: Any] = [:]
product["company_a"] = "ID04002"
product["quantity"] = 1
product["revenue"] = 215000
purchase["product"] = product
DOT.logPurchase(purchase)
NSMutableDictionary *purchase = [[NSMutableDictionary alloc] init];
[purchase setValue:@"WR9492003" forKey:@"transaction_id"];
[purchase setValue:@"KRW" forKey:@"currency"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"ID04002" forKey:@"company_a"];
[product setValue:[NSNumber numberWithInt:1] forKey:@"quantity"];
[product setValue:[NSNumber numberWithInt:215000] forKey:@"revenue"];
[purchase setValue:product forKey:@"product"];
[DOT logPurchase:purchase];
    var purchase = new Object();
    purchase["transaction_id"] = "WR9492003";
    purchase["currency"] = "KRW";
    var product = new Object();
    product["company_a"] = "ID04002";
    product["quantity"] = 1;
    product["revenue"] = 215000;
    purchase["product"] = product;
    DOT.logPurchase(purchase);
    var purchase = new Object();
    purchase["transaction_id"] = "WR9492003";
    purchase["currency"] = "KRW";
    var product = new Object();
    product["company_a"] = "ID04002";
    product["quantity"] = 1;
    product["revenue"] = 215000;
    purchase["product"] = product;
    WDOT.logPurchase(purchase);
// .dart 에서 호출 할 때 
Map purchase = {};
purchase["transaction_id"] = "WR9492003";
purchase["currency"] = "KRW";
Map product = {};
product["company_a"] = "ID04002";
product["quantity"] = 1;
product["revenue"] = 215000;
purchase["product"] = product;
DOT.logPurchase(purchase);



// webview 에서 호출 할 때
var purchase = new Object();
purchase["transaction_id"] =  "WR9492003";
purchase["currency"] =  "KRW";

var productArray = new Array();
for( var inx = 0; inx < purchaselist[송금목록].length; inx++){
var purchaseProduct = purchaselist[inx]; 
var product = new Object();
product["company_a"] = "ID04002";
product["quantity"] = 1;
product["revenue"] = 215000;
productArray.push(product); 

purchase["product"] = productArray;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logPurchase",
      data: purchase
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logPurchase(JSON.stringify({
    transaction_id : "WR9492003",
    currency : "KRW",
    product : {
    company_a : "ID04002",
    currency_value_a : 300000,
    quantity : 1,
    revenue : 215000
    }
})); 

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logPurchase",
	data : {
	    transaction_id : "WR9492003",
	    currency : "KRW",
	    product : {
		    company_a : "ID04002",
		    currency_value_a : 300000,
		    quantity : 1,
		    revenue : 215000
        	}
	}  
})); 
Dictionary<string, object> purchase = new Dictionary<string, object>();
purchase.Add("transaction_id", "WR9492003");
purchase.Add("currency", "KRW");
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("company_a", "ID04002");
product.Add("quantity", 1);
product.Add("revenue", 215000);
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
purchase.Add("product", productList);
DOT.logPurchase(purchase);

환전

환전이 완료된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

transaction_id

EX47949398

string

송금번호

currency_a

KRW

string

기준통화코드

currency_value_a

300000

float

환전 대상 금액

currency_b

HKD

string

환전 받은 통화코드

currency_value_b

2106.54

float

환전 받은 금액

quantity

1

integer

환전 횟수

revenue

2106.54

double

매출로써 측정하고자 하는 금액

Map<String, Object> purchaseMap = new HashMap<>();
purchaseMap.put("transaction_id", "EX47949398");
Map<String, Object> productMap = new HashMap<>();
productMap.put("currency_a", "KRW");
productMap.put("currency_value_a", 300000);
productMap.put("currency_b", "HKD");
productMap.put("currency_value_b", 2106.54);
productMap.put("quantity", 1);
productMap.put("revenue", 2106.54);
purchaseMap.put("product", productMap);
DOT.logPurchase(purchaseMap);
val purchaseMap = mutableMapOf<String,Any>()
purchaseMap["transaction_id"] = "EX47949398"
purchaseMap["currency"] = "KRW"
val productMap = mutableMapOf<String,Any>()
productMap["currency_a"] = "KRW"
productMap["currency_value_a"] = 300000
productMap["currency_b"] = "HKD"
productMap["currency_value_b"] = 2106.54
productMap["quantity"] = 1
productMap["revenue"] = 2106.54
purchaseMap["product"] = productMap
DOT.logPurchase(purchaseMap)
let purchase = NSMutableDictionary()
purchase["transaction_id"] = "EX47949398"
var product : [String: Any] = [:]
product["currency_a"] = "KRW"
product["currency_value_a"] = 300000
product["currency_b"] = "HKD"
product["currency_value_b"] = 2106.54
product["quantity"] = 1
product["revenue"] = 2106.54
purchase["product"] = product
DOT.logPurchase(purchase)
NSMutableDictionary *purchase = [[NSMutableDictionary alloc] init];
[purchase setValue:@"EX47949398" forKey:@"transaction_id"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"KRW" forKey:@"currency_a"];
[product setValue:[NSNumber numberWithInt:300000] forKey:@"currency_value_a"];
[product setValue:@"HKD" forKey:@"currency_b"];
[product setValue:[NSNumber numberWithInt:2106.54]forKey:@"currency_value_b"];
[product setValue:[NSNumber numberWithInt:1] forKey:@"quantity"];
[product setValue:[NSNumber numberWithInt:2106.54] forKey:@"revenue"];
[purchase setValue:product forKey:@"product"];
[DOT logPurchase:purchase];
    var purchase = new Object();
    purchase["transaction_id"] = "EX47949398";
    var product = new Object();
    product["currency_a"] = "KRW";
    product["currency_value_a"] = 300000;
    product["currency_b"] = "HKD";
    product["currency_value_b"] = 2106.54;
    product["quantity"] = 1;
    product["revenue"] = 2106.54;
    purchase["product"] = product;
    DOT.logPurchase(purchase);
    var purchase = new Object();
    purchase["transaction_id"] = "EX47949398";
    var product = new Object();
    product["currency_a"] = "KRW";
    product["currency_value_a"] = 300000;
    product["currency_b"] = "HKD";
    product["currency_value_b"] = 2106.54;
    product["quantity"] = 1;
    product["revenue"] = 2106.54;
    purchase["product"] = product;
    WDOT.logPurchase(purchase);
// .dart 에서 호출 할 때 
Map purchase = {};
purchase["transaction_id"] = "EX47949398";
Map product = {};
product["currency_a"] = "KRW";
product["currency_value_a"] = 300000;
product["currency_b"] = "HKD";
product["currency_value_b"] = 2106.54;
product["quantity"] = 1;
product["revenue"] = 2106.54;
purchase["product"] = product;
DOT.logPurchase(purchase);



// webview 에서 호출 할 때
var purchase = new Object();
purchase["transaction_id"] =  "EX47949398";

var productArray = new Array();
for( var inx = 0; inx < purchaselist[환전목록].length; inx++){
var purchaseProduct = purchaselist[inx]; 
var product = new Object();
product["currency_a"] = "KRW";
product["currency_value_a"] = 300000;
product["currency_b"] = "HKD";
product["currency_value_b"] = 2106.54;
product["quantity"] = 1;
product["revenue"] = 2106.54;
productArray.push(product); 

purchase["product"] = productArray;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logPurchase",
      data: purchase
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logPurchase(JSON.stringify({
    transaction_id : "EX47949398",
    product : {
    currency_a : "KRW",
    currency_value_a : 300000,
    currency_b : "HKD",
    currency_value_b : 2106.54,
    quantity : 1,
    revenue : 2106.54
    }
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logPurchase",
	data : {
	    transaction_id : "EX47949398",
	    product : {
		    currency_a : "KRW",
		    currency_value_a : 300000,
		    currency_b : "HKD",
		    currency_value_b : 2106.54,
		    quantity : 1,
		    revenue : 2106.54
        	}
	}  
})); 
Dictionary<string, object> purchase = new Dictionary<string, object>();
purchase.Add("transaction_id", "EX47949398");
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("currency_a", "KRW");
product.Add("currency_value_a", 300000);
product.Add("currency_b", "HKD");
product.Add("currency_value_b", 2106.54);
product.Add("quantity", 1);
product.Add("revenue", 2106.54);
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
purchase.Add("product", productList);
DOT.logPurchase(purchase);

보험 가입

보험 가입이 완료된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

transaction_id

SF49484900

string

주문번호

currency

KRW

string

결제 통화코드

insurance_id

PP030401_001

string

보험상품코드

insurance_name

다이렉트 건강보험

string

보험 명칭

insurance_subtype_a

갱신형

string

상품 속성 a

insurance_subtype_b

특약1

string

상품 속성 b

g16

90

float

만기연령

quantity

1

integer

구매한 보험 개수

revenue

123000

double

매출로써 측정하고자 하는 금액

Map<String, Object> purchaseMap = new HashMap<>();
purchaseMap.put("transaction_id", "SF49484900");
purchaseMap.put("currency", "KRW");
Map<String, Object> productMap = new HashMap<>();
productMap.put("insurance_id", "PP030401_001");
productMap.put("insurance_name", "다이렉트 건강보험");
productMap.put("insurance_subtype_a", "갱신형");
productMap.put("insurance_subtype_b", "특약1");
productMap.put("g16", 90);
productMap.put("quantity", 1);
productMap.put("revenue", 123000);
purchaseMap.put("product", productMap);
DOT.logPurchase(purchaseMap);
val purchaseMap = mutableMapOf<String,Any>()
purchaseMap["transaction_id"] = "SF49484900"
purchaseMap["currency"] = "KRW"
val productMap = mutableMapOf<String,Any>()
productMap["insurance_id"] = "PP030401_001"
productMap["insurance_name"] = "다이렉트 건강보험"
productMap["insurance_subtype_a"] = "갱신형"
productMap["insurance_subtype_b"] = "특약1"
productMap["g16"] = 90
productMap["quantity"] = 1
productMap["revenue"] = 123000
purchaseMap["product"] = productMap
DOT.logPurchase(purchaseMap)
let purchase = NSMutableDictionary()
purchase["transaction_id"] = "SF49484900"
purchase["currency"] = "KRW"
var product : [String: Any] = [:]
product["insurance_id"] = "PP030401_001"
product["insurance_name"] = "다이렉트 건강보험"
product["insurance_subtype_a"] = "갱신형"
product["insurance_subtype_b"] = "특약1"
product["g16"] = 90
product["quantity"] = 1
product["revenue"] = 123000
purchase["product"] = product
DOT.logPurchase(purchase)
NSMutableDictionary *purchase = [[NSMutableDictionary alloc] init];
[purchase setValue:@"SF49484900" forKey:@"transaction_id"];
[purchase setValue:@"KRW" forKey:@"currency"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"PP030401_001" forKey:@"insurance_id"];
[product setValue:@"다이렉트 건강보험" forKey:@"insurance_name"];
[product setValue:@"갱신형" forKey:@"insurance_subtype_a"];
[product setValue:@"특약1" forKey:@"insurance_subtype_b"];
[product setValue:[NSNumber numberWithInt:90] forKey:@"g16"];
[product setValue:[NSNumber numberWithInt:1] forKey:@"quantity"];
[product setValue:[NSNumber numberWithInt:123000] forKey:@"revenue"];
[purchase setValue:product forKey:@"product"];
[DOT logPurchase:purchase];
    var purchase = new Object();
    purchase["transaction_id"] = "SF49484900";
    purchase["currency"] = "KRW";
    var product = new Object();
    product["insurance_id"] = "PP030401_001";
    product["insurance_name"] = "다이렉트 건강보험";
    product["insurance_subtype_a"] = "갱신형";
    product["insurance_subtype_b"] = "특약1";
    product["g16"] = 90;
    product["quantity"] = 1;
    product["revenue"] = 123000;
    purchase["product"] = product;
    DOT.logPurchase(purchase);
    var purchase = new Object();
    purchase["transaction_id"] = "SF49484900";
    purchase["currency"] = "KRW";
    var product = new Object();
    product["insurance_id"] = "PP030401_001";
    product["insurance_name"] = "다이렉트 건강보험";
    product["insurance_subtype_a"] = "갱신형";
    product["insurance_subtype_b"] = "특약1";
    product["g16"] = 90;
    product["quantity"] = 1;
    product["revenue"] = 123000;
    purchase["product"] = product;
    WDOT.logPurchase(purchase);
// .dart 에서 호출 할 때 
Map purchase = {};
purchase["transaction_id"] = "SF49484900";
purchase["currency"] = "KRW";
Map product = {};
product["insurance_id"] = "PP030401_001";
product["insurance_name"] = "다이렉트 건강보험";
product["insurance_subtype_a"] = "갱신형";
product["insurance_subtype_b"] = "특약1";
product["g16"] = 90;
product["quantity"] = 1;
product["revenue"] = 123000;
purchase["product"] = product;
DOT.logPurchase(purchase);



// webview 에서 호출 할 때
var purchase = new Object();
purchase["transaction_id"] =  "SF49484900";
purchase["currency"] = "KRW";

var productArray = new Array();
for( var inx = 0; inx < purchaselist[보험목록].length; inx++){
var purchaseProduct = purchaselist[inx]; 
var product = new Object();
product["insurance_id"] = "PP030401_001";
product["insurance_name"] = "다이렉트 건강보험";
product["insurance_subtype_a"] = "갱신형";
product["insurance_subtype_b"] = "특약1";
product["g16"] = 90;
product["quantity"] = 1;
product["revenue"] = 123000;
productArray.push(product); 

purchase["product"] = productArray;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logPurchase",
      data: purchase
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logPurchase(JSON.stringify({
    transaction_id : "SF49484900",
    currency : "KRW",
    product : {
    insurance_id : "PP030401_001",
    insurance_name : "다이렉트 건강보험",
    insurance_subtype_a : "갱신형",
    insurance_subtype_b : "특약1",
    g16 : 90,
    quantity : 1,
    revenue : 123000
    }
})); 

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logPurchase",
	data : {
	    transaction_id : "SF49484900",
	    currency : "KRW",
	    product : {
		    insurance_id : "PP030401_001",
		    insurance_name : "다이렉트 건강보험",
		    insurance_subtype_a : "갱신형",
		    insurance_subtype_b : "특약1",
		    g16 : 90,
		    quantity : 1,
		    revenue : 123000
        	}
	}  
})); 
Dictionary<string, object> purchase = new Dictionary<string, object>();
purchase.Add("transaction_id", "SF49484900");
purchase.Add("currency", "KRW");
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("insurance_id", "PP030401_001");
product.Add("insurance_name", "다이렉트 건강보험");
product.Add("insurance_subtype_a", "갱신형");
product.Add("insurance_subtype_b", "특약1");
product.Add("g16", 90);
product.Add("quantity", 1);
product.Add("revenue", 123000);
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
purchase.Add("product", productList);
DOT.logPurchase(purchase);

투자

상품에 대한 투자가 완료된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

transaction_id

IV7878930

string

주문번호

currency

KRW

string

결제 통화코드

investment_id

20-LN-4501

string

투자상품코드

investment_name

제4178차 근린생활시설 신축사업 사업자대출 리파이낸싱

string

상품 명칭

g15

13

float

수익률

quantity

1

integer

투자한 상품 개수

revenue

60000

double

매출로써 측정하고자 하는 금액

Map<String, Object> purchaseMap = new HashMap<>();
purchaseMap.put("transaction_id", "IV7878930");
purchaseMap.put("currency", "KRW");
Map<String, Object> productMap = new HashMap<>();
productMap.put("investment_id", "20-LN-4501");
productMap.put("investment_name", "제4178차 근린생활시설 신축사업 사업자대출 리파이낸싱");
productMap.put("g15", 13);
productMap.put("quantity", 1);
productMap.put("revenue", 60000);
purchaseMap.put("product", productMap);
DOT.logPurchase(purchaseMap);
val purchaseMap = mutableMapOf<String,Any>()
purchaseMap["transaction_id"] = "IV7878930"
purchaseMap["currency"] = "KRW"
val productMap = mutableMapOf<String,Any>()
productMap["investment_id"] = "20-LN-4501"
productMap["investment_name"] = "제4178차 근린생활시설 신축사업 사업자대출 리파이낸싱"
productMap["g15"] = 13
productMap["quantity"] = 1
productMap["revenue"] = 60000
purchaseMap["product"] = productMap
DOT.logPurchase(purchaseMap)
let purchase = NSMutableDictionary()
purchase["transaction_id"] = "IV7878930"
purchase["currency"] = "KRW"
var product : [String: Any] = [:]
product["investment_id"] = "20-LN-4501"
product["investment_name"] = "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱"
product["g15"] = 13
product["quantity"] = 1
product["revenue"] = 60000
purchase["product"] = product
DOT.logPurchase(purchase)
NSMutableDictionary *purchase = [[NSMutableDictionary alloc] init];
[purchase setValue:@"IV7878930" forKey:@"transaction_id"];
[purchase setValue:@"KRW" forKey:@"currency"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"20-LN-4501" forKey:@"investment_id"];
[product setValue:@"제4178차 근린생활시설 신축사업 사업자대출 리파이낸싱" forKey:@"investment_name"];
[product setValue:[NSNumber numberWithInt:13] forKey:@"g15"];
[product setValue:[NSNumber numberWithInt:1] forKey:@"quantity"];
[product setValue:[NSNumber numberWithInt:60000] forKey:@"revenue"];
[purchase setValue:product forKey:@"product"];
[DOT logPurchase:purchase];
    var purchase = new Object();
    purchase["transaction_id"] = "IV7878930";
    purchase["currency"] = "KRW";
    var product = new Object();
    product["investment_id"] = "20-LN-4501";
    product["investment_name"] = "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱";
    product["g15"] = 13;
    product["quantity"] = 1;
    product["revenue"] = 60000;
    purchase["product"] = product;
    DOT.logPurchase(purchase);
    var purchase = new Object();
    purchase["transaction_id"] = "IV7878930";
    purchase["currency"] = "KRW";
    var product = new Object();
    product["investment_id"] = "20-LN-4501";
    product["investment_name"] = "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱";
    product["g15"] = 13;
    product["quantity"] = 1;
    product["revenue"] = 60000;
    purchase["product"] = product;
    WDOT.logPurchase(purchase);
// .dart 에서 호출 할 때 
Map purchase = {};
purchase["transaction_id"] = "IV7878930";
purchase["currency"] = "KRW";
Map product = {};
product["investment_id"] = "20-LN-4501";
product["investment_name"] = "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱";
product["g15"] = 13;
product["quantity"] = 1;
product["revenue"] = 60000;
purchase["product"] = product;
DOT.logPurchase(purchase);



// webview 에서 호출 할 때
var purchase = new Object();
purchase["transaction_id"] = "IV7878930";
purchase["currency"] = "KRW";

var productArray = new Array();
for( var inx = 0; inx < purchaselist[보험목록].length; inx++){
var purchaseProduct = purchaselist[inx]; 
var product = new Object();
product["investment_id"] = "20-LN-4501";
product["investment_name"] = "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱";
product["g15"] = 13;
product["quantity"] = 1;
product["revenue"] = 60000;
productArray.push(product); 

purchase["product"] = productArray;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logPurchase",
      data: purchase
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logPurchase(JSON.stringify({
    transaction_id : "IV7878930",
    currency : "KRW",
    product : {
    investment_id : "20-LN-4501",
    investment_name : "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱",
    g15 : 13,
    quantity : 1,
    revenue : 60000
    }
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logPurchase",
	data : {
	    transaction_id : "IV7878930",
	    currency : "KRW",
	    product : {
		    investment_id : "20-LN-4501",
		    investment_name : "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱",
		    g15 : 13,
		    quantity : 1,
		    revenue : 60000
        	}
	}  
})); 
Dictionary<string, object> purchase = new Dictionary<string, object>();
purchase.Add("transaction_id", "IV7878930");
purchase.Add("currency", "KRW");
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("investment_id", "20-LN-4501");
product.Add("investment_name", "제4178차  근린생활시설 신축사업 사업자대출 리파이낸싱");
product.Add("g15", 13);
product.Add("quantity", 1);
product.Add("revenue", 60000);
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
purchase.Add("product", productList);
DOT.logPurchase(purchase);

대출 신청서 작성

유저가 대출 신청서 작성을 시작하는 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

loan_id

L39848

string

대출상품코드

loan_name

쉽고 빠른 신용대출

string

대출상품명칭

loan_type

신용대출

string

상품 유형

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_fill_application");
Map<String, Object> productMap = new HashMap<>();
productMap.put("loan_id", "L39848");
productMap.put("loan_name", "쉽고 빠른 신용대출");
productMap.put("loan_type", "신용대출");
eventMap.put("product", productMap);
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_fill_application"
val productMap = mutableMapOf<String,Any>()
productMap["loan_id"] = "L39848"
productMap["loan_name"] = "쉽고 빠른 신용대출"
productMap["loan_type"] = "신용대출"
eventMap["product"] = productMap
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_fill_application"
var product : [String: Any] = [:]
product["loan_id"] = "L39848"
product["loan_name"] = "쉽고 빠른 신용대출"
product["loan_type"] = "신용대출"
event["product"] = product
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_fill_application" forKey:@"event"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"L39848" forKey:@"loan_id"];
[product setValue:@"쉽고 빠른 신용대출" forKey:@"loan_name"];
[product setValue:@"신용대출" forKey:@"loan_type"];
[event setValue:@product forKey:@"product"]
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_fill_application";
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_fill_application";
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_fill_application";
Map product = {};
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
event["product"] = product;
DOT.logEvent(event);

// webview 에서 호출 할 때
var event = new Object();
event["event"] = "w_fill_application";
var product =new Object();
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";

event["product"]  = product;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: event
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_fill_application",
    product : {
    loan_id : "L39848",
    loan_name : "쉽고 빠른 신용대출",
    loan_type : "신용대출"
    }
})); 	

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	    event : "w_fill_application",
	    product : {
		    loan_id : "L39848",
		    loan_name : "쉽고 빠른 신용대출",
		    loan_type : "신용대출"
	    }
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_fill_application");
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("loan_id", "L39848");
product.Add("loan_name", "쉽고 빠른 신용대출");
product.Add("loan_type", "신용대출");
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
eventDic.Add("product", productList);
DOT.logEvent(eventDic);

대출 신청

대출을 신청하는 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

loan_id

L39848

string

대출상품코드

loan_name

쉽고 빠른 신용대출

string

대출상품명칭

loan_type

신용대출

string

상품 유형

currency

KRW

string

결제 통화코드

g12

4000000

float

대출 신청금액

g14

3.125

float

대출 이자율

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_submit_loan");
eventMap.put("currency", "KRW");
eventMap.put("g12", 4000000);
eventMap.put("g14", 3.125);
Map<String, Object> productMap = new HashMap<>();
productMap.put("loan_id", "L39848");
productMap.put("loan_name", "쉽고 빠른 신용대출");
productMap.put("loan_type", "신용대출");
eventMap.put("product", productMap);
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_submit_loan"
eventMap["currency"] = "KRW"
eventMap["g12"] = 4000000
eventMap["g14"] = 3.125
val productMap = mutableMapOf<String,Any>()
productMap["loan_id"] = "L39848"
productMap["loan_name"] = "쉽고 빠른 신용대출"
productMap["loan_type"] = "신용대출"
eventMap["product"] = productMap
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_submit_loan"
event["currency"] = "KRW"
event["g12"] = 4000000
event["g14"] = 3.125
var product : [String: Any] = [:]
product["loan_id"] = "L39848"
product["loan_name"] = "쉽고 빠른 신용대출"
product["loan_type"] = "신용대출"
event["product"] = product
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_submit_loan" forKey:@"event"];
[event setValue:@"KRW" forKey:@"currency"];
[event setValue:[NSNumber numberWithInt:4000000] forKey:@"g12"];
[event setValue:[NSNumber numberWithInt:3.125] forKey:@"g14"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"L39848" forKey:@"loan_id"];
[product setValue:@"쉽고 빠른 신용대출" forKey:@"loan_name"];
[product setValue:@"신용대출" forKey:@"loan_type"];
[event setValue:@product forKey:@"product"]
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_submit_loan";
    event["currency"] = "KRW";
    event["g12"] = 4000000;
    event["g14"] = 3.125;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_submit_loan";
    event["currency"] = "KRW";
    event["g12"] = 4000000;
    event["g14"] = 3.125;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_submit_loan";
event["currency"] = "KRW";
event["g12"] = 4000000;
event["g14"] = 3.125;
Map product = {};
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
event["product"] = product;
DOT.logEvent(event);

// webview 에서 호출 할 때
var event = new Object();
event["event"] = "w_submit_loan";
event["currency"] = "KRW";
event["g12"] = 4000000;
event["g14"] = 3.125;
var product =new Object();
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";

event["product"]  = product;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: event
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
	    event : "w_submit_loan",
	    currency : "KRW",
	    g12 : 4000000,
	    g14 : 3.125,
	    product : {
	    loan_id : "L39848",
	    loan_name : "쉽고 빠른 신용대출",
	    loan_type : "신용대출"
    }
})); 

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	    event : "w_submit_loan",
	    currency : "KRW",
	    g12 : 4000000,
	    g14 : 3.125,
	    product : {
		    loan_id : "L39848",
		    loan_name : "쉽고 빠른 신용대출",
		    loan_type : "신용대출"
	    }
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_submit_loan");
eventDic.Add("currency", "KRW");
eventDic.Add("g12", 4000000);
eventDic.Add("g14", 3.125);
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("loan_id", "L39848");
product.Add("loan_name", "쉽고 빠른 신용대출");
product.Add("loan_type", "신용대출");
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
eventDic.Add("product", productList);
DOT.logEvent(eventDic);

대출 승인

대출이 승인된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

transaction_id

L4788839

string

주문번호

currency

KRW

string

결제 통화코드

g14

3.125

float

대출 이자율

loan_id

L39848

string

대출상품코드

loan_name

쉽고 빠른 신용대출

string

대출상품명칭

loan_type

신용대출

string

상품 유형

quantity

1

integer

대출 승인 횟수

revenue

4000000

double

대출 승인금액

Map<String, Object> purchaseMap = new HashMap<>();
purchaseMap.put("transaction_id", "L4788839");
purchaseMap.put("currency", "KRW");
purchaseMap.put("g14", 3.125);
Map<String, Object> productMap = new HashMap<>();
productMap.put("loan_id", "L39848");
productMap.put("loan_name", "쉽고 빠른 신용대출");
productMap.put("loan_type", "신용대출");
productMap.put("quantity", 1);
productMap.put("revenue", 4000000);
purchaseMap.put("product", productMap);
DOT.logPurchase(purchaseMap);
val purchaseMap = mutableMapOf<String,Any>()
purchaseMap["transaction_id"] = "L4788839"
purchaseMap["currency"] = "KRW"
purchaseMap["g14"] = 3.125
val productMap = mutableMapOf<String,Any>()
productMap["loan_id"] = "L39848"
productMap["loan_name"] = "쉽고 빠른 신용대출"
productMap["loan_type"] = "신용대출"
productMap["quantity"] = 1
productMap["revenue"] = 4000000
purchaseMap["product"] = productMap
DOT.logPurchase(purchaseMap)
let purchase = NSMutableDictionary()
purchase["transaction_id"] = "L4788839"
purchase["currency"] = "KRW"
purchase["g14"] = 3.125
var product : [String: Any] = [:]
product["loan_id"] = "L39848"
product["loan_name"] = "쉽고 빠른 신용대출"
product["loan_type"] = "신용대출"
product["quantity"] = 1
product["revenue"] = 4000000
purchase["product"] = product
DOT.logPurchase(purchase)
NSMutableDictionary *purchase = [[NSMutableDictionary alloc] init];
[event setValue:@"L4788839" forKey:@"transaction_id"];
[event setValue:@"KRW" forKey:@"currency"];
[event setValue:[NSNumber numberWithInt:3.125] forKey:@"g14"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"L39848" forKey:@"loan_id"];
[product setValue:@"쉽고 빠른 신용대출" forKey:@"loan_name"];
[product setValue:@"신용대출" forKey:@"loan_type"];
[product setValue:[NSNumber numberWithInt:1] forKey:@"quantity"];
[product setValue:[NSNumber numberWithInt:4000000] forKey:@"revenue"];
[purchase setValue:@product forKey:@"product"]
[DOT logPurchase:purchase];
    var purchase = new Object();
    purchase["transaction_id"] = "L4788839";
    purchase["currency"] = "KRW";
    purchase["g14"] = 3.125;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    product["quantity"] = 1;
    product["revenue"] = 4000000;
    purchase["product"] = product;
    DOT.logPurchase(purchase);
    var purchase = new Object();
    purchase["transaction_id"] = "L4788839";
    purchase["currency"] = "KRW";
    purchase["g14"] = 3.125;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    product["quantity"] = 1;
    product["revenue"] = 4000000;
    purchase["product"] = product;
    WDOT.logPurchase(purchase);
// .dart 에서 호출 할 때 
Map purchase = {};
purchase["transaction_id"] = "L4788839";
purchase["currency"] = "KRW";
purchase["g14"] = 3.125;
Map product = {};
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
product["quantity"] = 1;
product["revenue"] = 4000000;
purchase["product"] = product;
DOT.logPurchase(purchase);


// webview 에서 호출 할 때
var purchase = new Object();
purchase["transaction_id"] = "L4788839";
purchase["currency"] = "KRW";
purchase["g14"] = 3.125;

var productArray = new Array();
for( var inx = 0; inx < purchaselist[대출목록].length; inx++){
var purchaseProduct = purchaselist[inx]; 
var product = new Object();
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
product["quantity"] = 1;
product["revenue"] = 4000000;
productArray.push(product); 

purchase["product"] = productArray;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logPurchase",
      data: purchase
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logPurchase(JSON.stringify({
    transaction_id : "L4788839",
    currency : "KRW",
    g14 : 3.125,
    product : {
    loan_id : "L39848",
    loan_name : "쉽고 빠른 신용대출",
    loan_type : "신용대출",
    quantity : 1,
    revenue : 4000000
    }
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logPurchase",
	data : {
	    transaction_id : "L4788839",
	    currency : "KRW",
	    g14 : 3.125,
	    product : {
		    loan_id : "L39848",
		    loan_name : "쉽고 빠른 신용대출",
		    loan_type : "신용대출",
		    quantity : 1,
		    revenue : 4000000
        	}
	}  
})); 
Dictionary<string, object> purchase = new Dictionary<string, object>();
purchase.Add("transaction_id", "L4788839");
purchase.Add("currency", "KRW");
purchase.Add("g14", 3.125);
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("loan_id", "L39848");
product.Add("loan_name", "쉽고 빠른 신용대출");
product.Add("loan_type", "신용대출");
product.Add("quantity", 1);
product.Add("revenue", 4000000);
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
purchase.Add("product", productList);
DOT.logPurchase(purchase);

대출 거절

대출이 거절된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

loan_id

L39848

string

대출상품코드

loan_name

쉽고 빠른 신용대출

string

대출상품명칭

loan_type

신용대출

string

상품 유형

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_loan_rejected");
Map<String, Object> productMap = new HashMap<>();
productMap.put("loan_id", "L39848");
productMap.put("loan_name", "쉽고 빠른 신용대출");
productMap.put("loan_type", "신용대출");
eventMap.put("product", productMap);
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_loan_rejected"
val productMap = mutableMapOf<String,Any>()
productMap["loan_id"] = "L39848"
productMap["loan_name"] = "쉽고 빠른 신용대출"
productMap["loan_type"] = "신용대출"
eventMap["product"] = productMap
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_loan_rejected"
var product : [String: Any] = [:]
product["loan_id"] = "L39848"
product["loan_name"] = "쉽고 빠른 신용대출"
product["loan_type"] = "신용대출"
event["product"] = product
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_loan_rejected" forKey:@"event"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"L39848" forKey:@"loan_id"];
[product setValue:@"쉽고 빠른 신용대출" forKey:@"loan_name"];
[product setValue:@"신용대출" forKey:@"loan_type"];
[event setValue:@product forKey:@"product"]
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_loan_rejected";
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_loan_rejected";
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_loan_rejected";
Map product = {};
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
event["product"] = product;
DOT.logEvent(event);

// webview 에서 호출 할 때
var event = new Object();
event["event"] = "w_loan_rejected";
var product =new Object();
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";

event["product"]  = product;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: event
}));
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_loan_rejected",
    product : {
    loan_id : "L39848",
    loan_name : "쉽고 빠른 신용대출",
    loan_type : "신용대출"
    }
})); 

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	    event : "w_loan_rejected",
	    product : {
		    loan_id : "L39848",
		    loan_name : "쉽고 빠른 신용대출",
		    loan_type : "신용대출"
	    }
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_loan_rejected");
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("loan_id", "L39848");
product.Add("loan_name", "쉽고 빠른 신용대출");
product.Add("loan_type", "신용대출");
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
eventDic.Add("product", productList);
DOT.logEvent(eventDic);

대출 상환

대출이 상환된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

loan_id

L39848

string

대출상품코드

loan_name

쉽고 빠른 신용대출

string

대출상품명칭

loan_type

신용대출

string

상품 유형

repayment_id

RP829

string

상환코드

g13

500000

float

상환 금액

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_repayment");
eventMap.put("repayment_id", "RP829");
eventMap.put("g13", 500000);
Map<String, Object> productMap = new HashMap<>();
productMap.put("loan_id", "L39848");
productMap.put("loan_name", "쉽고 빠른 신용대출");
productMap.put("loan_type", "신용대출");
eventMap.put("product", productMap);
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_repayment"
eventMap["repayment_id"] = "RP829"
eventMap["g13"] = 500000
val productMap = mutableMapOf<String,Any>()
productMap["loan_id"] = "L39848"
productMap["loan_name"] = "쉽고 빠른 신용대출"
productMap["loan_type"] = "신용대출"
eventMap["product"] = productMap
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_repayment"
event["repayment_id"] = "RP829"
event["g13"] = 500000
var product : [String: Any] = [:]
product["loan_id"] = "L39848"
product["loan_name"] = "쉽고 빠른 신용대출"
product["loan_type"] = "신용대출"
event["product"] = product
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_repayment" forKey:@"event"];
[event setValue:@"RP829" forKey:@"repayment_id"];
[event setValue:[NSNumber numberWithInt:500000] forKey:@"g13"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"L39848" forKey:@"loan_id"];
[product setValue:@"쉽고 빠른 신용대출" forKey:@"loan_name"];
[product setValue:@"신용대출" forKey:@"loan_type"];
[event setValue:@product forKey:@"product"]
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_repayment";
    event["repayment_id"] = "RP829";
    event["g13"] = 500000;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_repayment";
    event["repayment_id"] = "RP829";
    event["g13"] = 500000;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_repayment";
event["repayment_id"] = "RP829";
event["g13"] = 500000;
Map product = {};
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
event["product"] = product;
DOT.logEvent(event);

// webview 에서 호출 할 때
var event = new Object();
event["event"] = "w_repayment";
event["repayment_id"] = "RP829";
event["g13"] = 500000;
var product =new Object();
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";

event["product"]  = product;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: event
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_repayment",
    repayment_id : "RP829",
    g13 : 500000,
    product : {
    loan_id : "L39848",
    loan_name : "쉽고 빠른 신용대출",
    loan_type : "신용대출"
    }
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	    event : "w_repayment",
	    repayment_id : "RP829",
	    g13 : 500000,
	    product : {
		    loan_id : "L39848",
		    loan_name : "쉽고 빠른 신용대출",
		    loan_type : "신용대출"
	    }
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_repayment");
eventDic.Add("repayment_id", "RP829");
eventDic.Add("g13", 500000);
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("loan_id", "L39848");
product.Add("loan_name", "쉽고 빠른 신용대출");
product.Add("loan_type", "신용대출");
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
eventDic.Add("product", productList);
DOT.logEvent(eventDic);

대출 최종상환 완료

대출의 최종상환이 완료된 시점에 아래 코드를 추가합니다.

선택 속성

Key

Value 예시

Type

설명

loan_id

L39848

string

대출상품코드

loan_name

쉽고 빠른 신용대출

string

대출상품명칭

loan_type

신용대출

string

상품 유형

repayment_id

RP829

string

상환코드

g13

500000

float

상환 금액

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_finish_repayment");
eventMap.put("repayment_id", "RP829");
eventMap.put("g13", 500000);
Map<String, Object> productMap = new HashMap<>();
productMap.put("loan_id", "L39848");
productMap.put("loan_name", "쉽고 빠른 신용대출");
productMap.put("loan_type", "신용대출");
eventMap.put("product", productMap);
DOT.logEvent(eventMap);
val eventMap = mutableMapOf<String,Any>()
eventMap["event"] = "w_finish_repayment"
eventMap["repayment_id"] = "RP829"
eventMap["g13"] = 500000
val productMap = mutableMapOf<String,Any>()
productMap["loan_id"] = "L39848"
productMap["loan_name"] = "쉽고 빠른 신용대출"
productMap["loan_type"] = "신용대출"
eventMap["product"] = productMap
DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_finish_repayment"
event["repayment_id"] = "RP829"
event["g13"] = 500000
var product : [String: Any] = [:]
product["loan_id"] = "L39848"
product["loan_name"] = "쉽고 빠른 신용대출"
product["loan_type"] = "신용대출"
event["product"] = product
DOT.logEvent(event)e
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_finish_repayment" forKey:@"event"];
[event setValue:@"RP829" forKey:@"repayment_id"];
[event setValue:[NSNumber numberWithInt:500000] forKey:@"g13"];
NSMutableDictionary *product = [[NSMutableDictionary alloc] init];
[product setValue:@"L39848" forKey:@"loan_id"];
[product setValue:@"쉽고 빠른 신용대출" forKey:@"loan_name"];
[product setValue:@"신용대출" forKey:@"loan_type"];
[event setValue:@product forKey:@"product"]
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_finish_repayment";
    event["repayment_id"] = "RP829";
    event["g13"] = 500000;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_finish_repayment";
    event["repayment_id"] = "RP829";
    event["g13"] = 500000;
    var product = new Object();
    product["loan_id"] = "L39848";
    product["loan_name"] = "쉽고 빠른 신용대출";
    product["loan_type"] = "신용대출";
    event["product"] = product;
    WDOT.logEvent(event);
// .dart 에서 호출 할 때
Map event = {};
event["event"] = "w_finish_repayment";
event["repayment_id"] = "RP829";
event["g13"] = 500000;
Map product = {};
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";
event["product"] = product;
DOT.logEvent(event);

// webview 에서 호출 할 때
var event = new Object();
event["event"] = "w_finish_repayment";
event["repayment_id"] = "RP829";
event["g13"] = 500000;
var product =new Object();
product["loan_id"] = "L39848";
product["loan_name"] = "쉽고 빠른 신용대출";
product["loan_type"] = "신용대출";

event["product"]  = product;

window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: event
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
    event : "w_finish_repayment",
    repayment_id : "RP829",
    g13 : 500000,
    product : {
    loan_id : "L39848",
    loan_name : "쉽고 빠른 신용대출",
    loan_type : "신용대출"
    }
}));

// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
	    event : "w_finish_repayment",
	    repayment_id : "RP829",
	    g13 : 500000,
	    product : {
		    loan_id : "L39848",
		    loan_name : "쉽고 빠른 신용대출",
		    loan_type : "신용대출"
	    }
	}  
})); 
Dictionary<string, object> eventDic = new Dictionary<string, object>();
eventDic.Add("event", "w_finish_repayment");
eventDic.Add("repayment_id", "RP829");
eventDic.Add("g13", 500000);
Dictionary<string, object> product = new Dictionary<string, object>();
product.Add("loan_id", "L39848");
product.Add("loan_name", "쉽고 빠른 신용대출");
product.Add("loan_type", "신용대출");
List<Dictionary<string, object>> productList = new List<Dictionary<string, object>>();
productList.Add(product);
eventDic.Add("product", productList);
DOT.logEvent(eventDic);

회원 탈퇴

회원 탈퇴가 완료된 시점에 아래 코드를 추가합니다.

Key

Value 예시

Type

설명

signoutTp

미이용

string

탈퇴사유

Map<String, Object> eventMap = new HashMap<>();
eventMap.put("event", "w_signout_complete");
eventMap.put("signoutTp", "미이용");
DOT.logEvent(eventMap);
 val eventMap = mutableMapOf<String,Any>()
 eventMap["event"] = "w_signout_complete"
 eventMap["signupTp"] = "email"
 DOT.logEvent(eventMap)
let event = NSMutableDictionary()
event["event"] = "w_signout_complete"
event["signupTp"] = "email"
DOT.logEvent(event)
NSMutableDictionary *event = [[NSMutableDictionary alloc] init];
[event setValue:@"w_signout_complete" forKey:@"event"];
[event setValue:@"email" forKey:@"signupTp"];
[DOT logEvent:event];
    var event = new Object();
    event["event"] = "w_signout_complete";
    event["signupTp"] = "email";
    DOT.logEvent(event);
    var event = new Object();
    event["event"] = "w_signout_complete";
    event["signupTp"] = "email";
    WDOT.logEvent(event);
// .dart 에서 호출 할 때 
Map signUp = {}; 
signUp["event"] = "w_signout_complete";
signUp["signupTp"] = "email";  
DOT.logEvent(signUp); 

// webview 에서 호출 할 때
window.flutter_inappwebview.callHandler("DotFlutterDataBridge",JSON.stringify({
      method : "logEvent",
      data: {
              event : "w_signout_complete",
              signupTp : "email"
      }
}));
// .js 에서 호출 할 때 
NativeModules.DotReactBridge.logEvent(JSON.stringify({
	event : "w_signout_complete",
	signupTp : "email"
}));


// webview 에서 호출 할 때
window.ReactNativeWebView.postMessage(JSON.stringify({
 	method:"logEvent",
	data : {
		event : "w_signout_complete",
		signupTp : "email"
	}  
})); 
Dictionary<string, object> eventDic= new Dictionary<string, object>();
eventDic.Add("event", "w_signout_complete");
eventDic.Add("signupTp", "email");
DOT.logEvent(eventDic);
☑️