检验场次座位是否可售
POST
/serve
请求参数
Body 参数application/json
service
string
movie
endpoint
string
/api/movie/order/check
params
object
必需
cinemaId
string
影院id
movieId
string
电影id
seatIds
array[string]
座位id集合
showId
string
场次id
示例
{
"service": "movie",
"endpoint": "/api/movie/order/check",
"params": {
"cinemaId": "ff8080818795e9f70187983563c80a15",
"movieId": "ff8080818c4eb907018c5f6d34f10b0c",
"showId": "510100-4-ff8080818795e9f70187983563c80a15-e51406ce2d27395772fb805a3f82aa5f-66687-0",
"seatIds": [
"000000029588-1-2",
"000000029588-1-3"
]
}
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
orderDesc
string
订单描述
orderPicUrl
string
订单图片
orderSubTitle
string
订单副标题
orderTitle
string
订单标题
originPrice
number
原价
quantity
integer
购买数量
salePrice
number
销售价
totalOriginAmount
number
总门市价
totalSaleAmount
number
总销售价
request_id
string
必需
示例
{
"code": 0,
"message": "ok",
"data": {
"orderDesc": "2025-05-03 23:35开场\r\n7号厅 VIP厅|赠爆米花可乐\r\n1排7座 1排6座",
"orderPicUrl": "https://oss.fxzb.vip/movie/517cb9b000df9cdf96e7fbfb71203906",
"orderSubTitle": "承光影界(COSMO店)",
"orderTitle": "水饺皇后 2张",
"originPrice": 108.9,
"quantity": 2,
"salePrice": 106.9,
"totalOriginAmount": 217.8,
"totalSaleAmount": 213.8
},
"request_id": "01968bac-0005-713a-ac50-f981d86db285"
}