Commit c6fe36ed authored by 张允禹's avatar 张允禹

t push -u origin master

parents
# this is an example of the Uber API
# as a demonstration of an API spec in YAML
swagger: '2.0'
info:
title: Backend
description: 下单
version: "1.0.0"
# the domain of the service
host: backend.test.gmei.com
# array of all schemes that your API supports
schemes:
- http
# will be prefixed to all paths
produces:
- application/json
paths:
/api/settlement/create:
post:
summary: 用户下单
description: |
用户下单
parameters:
- name: use_point
in: formData
description: 此单用户是否使用美分
required: true
type: boolean
- name: coupon_id
in: formData
description: 美券id
required: false
type: number
- name: service_id
in: formData
description: 美购id
required: true
type: number
- name: item_key
in: formData
description: 多属性key, 如果是多属性美购此项必填!
required: false
type: number
- name: cart_item_id
in: formData
description: 购物车id, id1-id2-id3
required: false
type: string
- name: platform
in: formData
description: 何种平台下单, iPhone or android or web
required: true
type: string
- name: phone
in: query
description: 联系人手机号发生修改才需要提交此参数
required: false
type: string
tags:
- backend
responses:
200:
description: An array of price estimates by product
examples:
application/json:
error: 0
message: 0
data:
status: 0
id: 123456
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/api/settlement/preview:
get:
summary: 下单预览
description: |
下单预览
parameters:
- name: cart_item_id
in: query
description: 购物车商品id.
required: false
type: string
- name: service_id
in: query
description: 美购id.
required: true
type: string
- name: item_key
in: query
description: 多属性key.
required: false
type: string
- name: coupon_id
in: query
description: 美券id.
required: false
type: string
tags:
- backend
responses:
200:
description: An array of price estimates by product
schema:
type: array
items:
$ref: '#/definitions/PriceEstimate'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/pay/unified/refund:
post:
summary: 统一退款入口
description: 支付宝、微信、applePay、分期 根据订单pyament_channel 区分
parameters:
- name: order_id
in: query
description: 被退款的订单id.
required: true
type: number
format: integer
tags:
- gaia
responses:
200:
description: An array of products
schema:
type: array
items:
$ref: '#/definitions/Product'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/pay/unified/cashback:
post:
summary: 统一返现入口
description: 支付宝、微信、applePay 分期不支持返现 根据订单pyament_channel 区分
parameters:
- name: order_id
in: query
description: 被退款的订单id.
required: true
type: number
tags:
- gaia
responses:
200:
description: Profile information for a user
schema:
$ref: '#/definitions/Profile'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/api/coupon/info:
post:
summary: 当前登录用户所有美券信息
description: 当前登录用户所有美券信息
parameters:
- name: order_id
in: query
description: 被退款的订单id.
required: true
type: number
tags:
- gaia
responses:
200:
description: Profile information for a user
schema:
$ref: '#/definitions/Profile'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/api/index/v3:
get:
summary: 当前登录用户所有美券信息
description: 当前登录用户所有美券信息
tags:
- gaia
responses:
200:
description: Profile information for a user
schema:
$ref: '#/definitions/Profile'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
/api/coupon/list:
get:
summary: 当前登录用户的美券信息
description: 当前登录用户的美券信息
tags:
- backend coupon
responses:
200:
description: Profile information for a user
schema:
$ref: '#/definitions/Profile'
default:
description: Unexpected error
schema:
$ref: '#/definitions/Error'
definitions:
Product:
type: object
properties:
product_id:
type: string
description: Unique identifier representing a specific product for a given latitude & longitude. For example, uberX in San Francisco will have a different product_id than uberX in Los Angeles.
description:
type: string
description: Description of product.
display_name:
type: string
description: Display name of product.
capacity:
type: string
description: Capacity of product. For example, 4 people.
image:
type: string
description: Image URL representing the product.
PriceEstimate:
type: object
properties:
product_id:
type: string
description: Unique identifier representing a specific product for a given latitude & longitude. For example, uberX in San Francisco will have a different product_id than uberX in Los Angeles
currency_code:
type: string
description: "[ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) currency code."
display_name:
type: string
description: Display name of product.
estimate:
type: string
description: Formatted string of estimate in local currency of the start location. Estimate could be a range, a single number (flat rate) or "Metered" for TAXI.
low_estimate:
type: number
description: Lower bound of the estimated price.
high_estimate:
type: number
description: Upper bound of the estimated price.
surge_multiplier:
type: number
description: Expected surge multiplier. Surge is active if surge_multiplier is greater than 1. Price estimate already factors in the surge multiplier.
Profile:
type: object
properties:
first_name:
type: string
description: First name of the Uber user.
last_name:
type: string
description: Last name of the Uber user.
email:
type: string
description: Email address of the Uber user
picture:
type: string
description: Image URL of the Uber user.
promo_code:
type: string
description: Promo code of the Uber user.
Activity:
type: object
properties:
uuid:
type: string
description: Unique identifier for the activity
Activities:
type: object
properties:
offset:
type: integer
format: int32
description: Position in pagination.
limit:
type: integer
format: int32
description: Number of items to retrieve (100 max).
count:
type: integer
format: int32
description: Total number of items available.
history:
type: array
items:
$ref: '#/definitions/Activity'
Error:
type: object
properties:
code:
type: integer
format: int32
message:
type: string
fields:
type: string
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment