获取影院某影片的场次列表
POST
/api/show/list
影院场次接口
责任人:未设置
请求参数
Query 参数
appId
string
渠道ID
nonce
string
随机字符串
sign
string
签名
timestamp
string
时间戳
Body 参数application/json
cinemaId
string
影院id
date
string
日期 默认当天
movieId
string
影片ID
示例
{
"cinemaId": "string",
"date": "string",
"movieId": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.com/api/show/list?appId&nonce&sign×tamp' \
--header 'Content-Type: application/json' \
--data-raw '{
"cinemaId": "string",
"date": "string",
"movieId": "string"
}'
返回响应
🟢200成功
*/*
Body
cinema
object (CinemaData)
可选
acceptFast
boolean
支持快速出票
cinemaAddress
string
影院地址
cinemaId
string
影院id
cinemaLineId
string
院线id
cinemaName
string
影院名称
cityCode
string
所在城市 编码
cityName
string
所在城市 名称
distanceText
string
用户与影院距离
downPrice
number <double>
最低销售价
latitude
number <double>
纬度
longitude
number <double>
经度
originPrice
number <double>
最低市场价
services
array[object (ServiceData) {2}]
服务亮点
dates
array[string]
日期列表
shows
array[object (MovieShowData) {17}]
影片场次集合
cinemaId
string
影院id
cinemaName
string
影院名称
downNetPrice
number <double>
网售最低市场价
downSalePrice
number <double>
最低销售价
duration
integer <int32>
影片时长
endSaleTime
string <date-time>
销售截止时间
hallId
string
影厅id
hallName
string
影厅名称
language
string
影片语言
movieId
string
影片id
movieName
string
影片名称
netPrice
number <double>
网售市场价
planType
string
影片类型
salePrice
number <double>
销售价格
showId
string
场次id
showTime
string <date-time>
开始时间
showVersionType
string
影片类型语言
示例
{
"cinema": {
"acceptFast": true,
"cinemaAddress": "string",
"cinemaId": "string",
"cinemaLineId": "string",
"cinemaName": "string",
"cityCode": "string",
"cityName": "string",
"distanceText": "string",
"downPrice": 0,
"latitude": 0,
"longitude": 0,
"originPrice": 0,
"services": [
{
"description": "string",
"name": "string"
}
]
},
"dates": [
"string"
],
"shows": [
{
"cinemaId": "string",
"cinemaName": "string",
"downNetPrice": 0,
"downSalePrice": 0,
"duration": 0,
"endSaleTime": "2019-08-24T14:15:22Z",
"hallId": "string",
"hallName": "string",
"language": "string",
"movieId": "string",
"movieName": "string",
"netPrice": 0,
"planType": "string",
"salePrice": 0,
"showId": "string",
"showTime": "2019-08-24T14:15:22Z",
"showVersionType": "string"
}
]
}
🟢201成功
🟠401没有权限
🟠403禁止访问
🟠404记录不存在