确认订单
接口描述
URL | index.php?route=checkout/confirm/api |
功能描述 | 确认订单 |
返回格式 | Json,UTF8 |
HTTP请求方式 | POST |
返回参数
参数名 | 参数全称 | 必选 | 参数类型 | 参数描述 |
---|
payment | payment | true | JSONArray/Bool | 付款说明 |
详细字段:payment
父字段 | 字段 | 必选 | 字段类型 | 字段描述 |
---|
payment | text_instruction | false | String | 标题 |
| text_description | false | String | 描述 |
| text_payment | false | String | 说明 |
| bank | false | String | 转账事项 |
| continue | true | String | 确认订单链接 |
调用示例
index.php?route=checkout/confirm/api
响应示例
{
"products":[
{
"cart_id":"38",
"product_id":"76",
"name":"女士服装",
"model":"0",
"option":[
{
"name":"颜色",
"value":"粉红"
},
{
"name":"尺寸",
"value":"Medium"
}
],
"recurring":"",
"quantity":"1",
"subtract":"1",
"price":"HK $288.00",
"total":"HK $288.00",
"href":"index.php?route=product/product/api&product_id=76"
}
......
],
"totals":[
{
"title":"商品总额",
"text":"HK $288.00"
},
{
"title":"到本商店自取",
"text":"HK $0.00"
},
{
"title":"优惠券 (222aaa)",
"text":"HK $-57.60"
},
{
"title":"订单总额",
"text":"HK $230.40"
}
],
/*银行转账*/
"payment":{
"text_instruction":"银行转帐说明",
"text_description":"请将总金额转入以下银行帐户。",
"text_payment":"在我们收到付款之前,您的订单将不会运送。",
"bank":"中国银行 012-123456-001 付款后,请把收据 WhatsApp 传送到 +852 2345 6789",
"continue":"index.php?route=extension/payment/bank_transfer/confirm"
}
/*PAYPAL*/
"payment":{
"continue":"index.php?route=extension/payment/pp_express/checkoutapi"
}
}
PAYPAL
接口描述
URL | index.php?route=extension/payment/pp_express/checkoutapi |
功能描述 | PAYPAL付款 |
返回格式 | Json,UTF8 |
HTTP请求方式 | GET |
返回参数
参数名 | 参数全称 | 必选 | 参数类型 | 参数描述 |
---|
continue | continue | true | String | PAYPAL付款链接 |
调用示例
index.php?route=extension/payment/pp_express/checkoutapi
响应示例
{
"continue": "https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=token&useraction=commit"
}
联络我们
接口描述
URL | index.php?route=information/contact/api |
功能描述 | 联络我们 |
返回格式 | Json,UTF8 |
HTTP请求方式 | POST |
业务参数
参数名 | 参数全称 | 必选 | 参数类型 | 参数描述 |
---|
name | name | true | String | 名称 |
email | email | true | String | 电邮 |
subject | subject | true | String | 主题 |
enquiry | enquiry | true | String | 内容 |
返回参数
参数名 | 参数全称 | 必选 | 参数类型 | 参数描述 |
---|
store | store | true | String | 商店名称 |
address | address | true | String | 地址 |
geocode | geocode | true | String | 谷歌地图链接 |
config_email | config_email | true | String | 电邮 |
telephone | telephone | true | Int | 电话 |
fax | fax | true | Int | 传真 |
调用示例
index.php?route=information/contact/api
响应示例
{
"store":"商店名称",
"address":"Address 1Address 1Address 1Address 1Address 1",
"geocode":"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3691.487144753047!2d114.17427131495461!3d22.29740898532505!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMjLCsDE3JzUwLjciTiAxMTTCsDEwJzM1LjMiRQ!5e0!3m2!1sen!2s!4v1475203837656",
"geocode_hl":"zh-HK",
"config_email":"admin@admin.com",
"telephone":"123456789",
"fax":"987654321",
"open":"",
"comment":"",
"image":false,
"locations":[
]
}
关于我们
接口描述
URL | index.php?route=information/information/about |
功能描述 | 关于我们 |
返回格式 | Json,UTF8 |
HTTP请求方式 | GET |
返回参数
参数名 | 参数全称 | 必选 | 参数类型 | 参数描述 |
---|
image | image | true | String | 图片 |
title | title | true | String | 标题 |
description | description | true | String | 描述 |
调用示例
index.php?route=information/information/about
响应示例
{
"image":"image/catalog/0161117104731.png",
"title":"关于我们",
"description":"<p>描述描述描述描述描述描述描述描述<br></p>",
"meta_title":"About Us",
"meta_description":"",
"meta_keyword":""
}