Get seats by show and time

This call is used to fetch the seats by their show and time.

Method: POST
URL: …/jambopayservices/api/movies/get-seats-by-show-time

Headers

KEY VALUE
app_key Value of the app_key
Authorization Bearer token

The request body is as follows

{
    "ShowId":"e.g 100300",
    "ShowTime":"e.g 14:00"
}

Parameters

Value Type Description
ShowId string The unique identifier assigned to a show
ShowTime string The time when the show begins

Sample response

[
    "F1",
    "F10",
    "F11",
    "F12",
    "F13",...
]
Untitled