获取影片某场次的座位列表
POST
/api/show/v2/seats
影院场次接口
责任人:未设置
请求参数
Query 参数
appId
string
渠道ID
nonce
string
随机字符串
sign
string
签名
timestamp
string
时间戳
Body 参数application/json
showId
string
场次 id
示例
{
"showId": "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/v2/seats?appId&nonce&sign×tamp' \
--header 'Content-Type: application/json' \
--data-raw '{
"showId": "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}]
服务亮点
movieInfo
object (MovieData)
可选
actors
array[object (MovieActorData) {4}]
演员详细信息
cast
string
参演演员
casts
array[object (MovieCastData) {4}]
其他演职人员信息
director
string
导演
directors
array[object (MovieDirectorData) {3}]
导演详细信息
duration
integer <int32>
时长(分钟)
filmTypes
string
影片类型
grade
number <double>
评分
hasVideos
boolean
预告片
images
array[string]
可选
intro
string
影片简介
language
string
影片语言
like
integer <int32>
想看
movieArea
string
影片制作地区
movieCode
string
可选
movieId
string
电影id
name
string
电影名称
photos
array[object (MoviePhotoData) {4}]
剧照
pic
string
影片海报地址
picHd
string
海报高清地址
publishDate
string <date-time>
上映时间
versionTypes
string
上映类型
videos
array[object (MovieVideoData) {5}]
预告片
seatsInfo
object (SeatsResp)
可选
restrictions
integer <int32>
可选
seats
array[object (SeatData) {7}]
座位
sections
array[object (SectionData) {3}]
座位区域
showInfo
object (MovieShowData)
可选
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"
}
]
},
"movieInfo": {
"actors": [
{
"name": "string",
"nameEn": "string",
"profile": "string",
"roleName": "string"
}
],
"cast": "string",
"casts": [
{
"castName": "string",
"castNameEn": "string",
"name": "string",
"nameEn": "string"
}
],
"director": "string",
"directors": [
{
"name": "string",
"nameEn": "string",
"profile": "string"
}
],
"duration": 0,
"filmTypes": "string",
"grade": 0,
"hasVideos": true,
"images": [
"string"
],
"intro": "string",
"language": "string",
"like": 0,
"movieArea": "string",
"movieCode": "string",
"movieId": "string",
"name": "string",
"photos": [
{
"image": "string",
"origin": "string",
"subtypeDesc": "string",
"typeDesc": "string"
}
],
"pic": "string",
"picHd": "string",
"publishDate": "2019-08-24T14:15:22Z",
"versionTypes": "string",
"videos": [
{
"cover": "string",
"duration": 0,
"title": "string",
"typeDesc": "string",
"url": "string"
}
]
},
"seatsInfo": {
"restrictions": 0,
"seats": [
{
"columnNo": "string",
"loverSeat": 0,
"rowNo": "string",
"seatId": "string",
"seatNo": "string",
"sectionId": "string",
"status": "string"
}
],
"sections": [
{
"originPrice": 0,
"salePrice": 0,
"sectionId": "string"
}
]
},
"showInfo": {
"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记录不存在