Get seats status

This call is used to confirm the availability of a seat. If the response is true, the seat is available and if the response is false it means that the seat is unavailable.

Method: POST
URL: …/jambopayservices/api/movies/get-seat-status

Headers

KEY VALUE
app_key Value of the app_key
Authorization Bearer token

The request body is as follows

{
    "ShowId":"e.g 10300",
    "ShowTime":"e.g 14:00"
    "Seat":"e.g F8"
}

Parameters

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

Sample response

{
    "Seat": "F8",
    "Status": true
}
Untitled