**接口地址**:`/biz/app/tickets/third/preOrder`
**請求方式**:`POST`
**請求數據類型**:`application/json`
**響應數據類型**:`*/*`
**接口描述**:
**請求示例**:
~~~
{
"acceptChangeseat": "",
"buySeats": [],
"callback": "",
"cinemaId": "",
"coupons": [],
"limitTime": "",
"mode": "",
"phoneNo": "",
"showId": ""
}
~~~
**請求參數**:
**請求參數**:
| 參數名稱 | 參數說明 | 請求類型 | 是否必須 | 數據類型 | schema |
| -------- | -------- | ----- | -------- | -------- | ------ |
|access-token|簽名:RSA(MD5(body+nonce+ts))|header|true|string||
|cps|cps|header|true|string||
|nonce|隨機值|header|true|string||
|param|param|body|true|SendPreOrderParam|SendPreOrderParam|
|??acceptChangeseat|接受調座:1=可調;0=禁止調座||false|string||
|??buySeats|選座IDs||true|array|string|
|??callback|訂單狀態回調url||false|string||
|??cinemaId|影院ID||true|string||
|??coupons|選用優惠券ID列表||false|array|string|
|??limitTime|超時時長:分鐘||false|string||
|??mode|出票模式:0=特惠出票、1=快速出票、2=極速出票||false|string||
|??phoneNo|聯系號碼||true|string||
|??showId|場次ID||true|string||
|ts|時間|header|true|string||
**響應狀態**:
| 狀態碼 | 說明 | schema |
| -------- | -------- | ----- |
|200|OK|接口返回對象?object?|
|201|Created||
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
**響應參數**:
| 參數名稱 | 參數說明 | 類型 | schema |
| -------- | -------- | ----- |----- |
|code|返回代碼|integer(int32)|integer(int32)|
|message|返回處理消息|string||
|result|返回數據對象|object||
|success|成功標志|boolean||
|timestamp|時間戳|integer(int64)|integer(int64)|
**響應示例**:
~~~
{
"code": 0,
"message": "",
"result": {},
"success": true,
"timestamp": 0
}
~~~