帮助中心

——  5分钟解决新手入门等基础问题  ——

空中云汇参数配置

1.如果还没开通空中汇账号,需要先注册申请空中云汇账号,开通收单功能。空中云汇信用卡全球收单业务开户需要提供 KYC材料及收单入网资料 ;注意大陆主体无法申请信用卡全球收单业务。

1.1企业的KYC材料准备,请点击参考详情

1.2收单入网材料如下:

1). Financial report of the last 2 years (audited preferred, for both the onboarding entity or its parent company can be accepted), including incoming statement, balance sheet and cash flow statement-近两年内的财务报表,包括进账报表、资产负债表和现金流量表,可以是国内公司的。如无法提供,请说明原因。

2). Acquiring history records from the current acquirer for the last 3 months showing revenue, refund and chargebacks-当前收单方最近 3 个月的收入、退款和退单的历史记录(Paypal即可)

3). Statement of the order percentage (in money value) to different target markets (ie, North America, Europe) and the according shipment time frame. For each target market, at least 5 different shipping proof in the last 3 months should be provided-5份以上最近 3 个月内的不同运输证明(美国两个不同地区的)

4). Describe the sourcing channel-说明货源

2. 如果已经注册了空中云汇账号并开通收单入网业务,登录空中云汇账号,在开发者下点击API keys

2.1. 点击生成,复制客户ID号(client ID)并保存,稍后填入Giimall 后台 client ID

2.2.点击生成API key,您的API key只会在生成时显示一次,请及时复制并妥善保存。稍后填入Giimall后台client API key。注意:如重新生成API key,已配置到吉喵云商家后台的会失效;需要在giimall后台重新输入新的API key。

3.点击开发者下的WebhooksWebhooks管理添加通知链接。

3.1.在通知链接中填入以下giimall回调地址//gateway.giimall.com/payment_notify/airwallex/notify

3.2 选择需要回调的事件。请一定按照以下图二的选项打勾,否则可能配置不成功。

4.最后复制以下webhook 密钥填入Giimall webhook token.

&& self.ga(target,{actionName:'add_to_cart'}); } else if(target.classList.contains('add_to_cart')) { self.ga(target,{actionName:'add_to_cart'}); } } ) } } }, /** * @method sendBuyNow buynow立即购买发送GA代码 */ sendBuyNow:function(){ var buyNow = document.querySelectorAll('[data-functionallink="buyNow"]'); buyNow.length && this.sendData(buyNow,{actionName:'buy_now'}); }, /** * @method sendShopCart 查看购物车发送GA */ sendShopCart:function(){ var checkButtons = document.querySelectorAll('.Checkout_view'); checkButtons.length && this.sendData(checkButtons,{actionName:'view_cart'}); }, /** *@method load 订单详情与提交订单页面加载完毕发送GA */ load:function(options){ var path = window.location.pathname; if(/settlement|order-details?|products/.test(path)) { this.handler(); //是否为商品详情页 if(path.indexOf('products') == -1) { //是否存在价格数据,存在则匹配出价格 if(options && typeof options.value == 'string'){ options.value = parseInt(options.value.match(/[.,\d]+$/)[0]); } if(options && /order-details?/.test(path)) { var trackOrders = window.Public.cookie.getItem("GTO-" + options.orderId),isTrack = true; trackOrders && trackOrders.indexOf("ga") != -1 || document.referrer == '' ? isTrack = false : window.Public.cookie.addItem("GTO-" + options.orderId,(trackOrders ? trackOrders +',' : '') + 'ga',{path:'/',endTime:60*60*24*30}); isTrack && gtag('event','purchase', {currency:options.currency,value:options.value,items: options.contents}); } else{ options && gtag('event','begin_checkout', {currency:options.currency,value:options.value,items: options.contents}); } } } }, handler:function(){ if(window.FBQ == undefined) { var self = this; window.FBQ = { load:window.TIKTOK || window.SNAPCHAT ? function(options){ window.TIKTOK && window.TIKTOK.load(options); window.SNAPCHAT && window.SNAPCHAT.load(options); self.load(options); } : this.load.bind(this) } } } } //ga初始化 GA.init();