Get shows by movie name

This call is used to fetch the shows by the movie name.

Method: POST
URL: …/jambopayservices/api/movies/get-shows-by-movie-name

Headers

KEY VALUE
app_key Value of the app_key
Authorization Bearer token

The request body is as follows

{
    "MovieName":"Doctor Strange"

}

Parameters

Value Type Description
MovieName string The name of the movie

Sample response

[
    {
        "ShowId": "30930",
        "ShowTimes": "14:00:00",
        "Price": 500.0,
        "Date": "2022-06-30",
        "Title": "Doctor Strange in the Multiverse of Madness 3D",
        "ShortName": "Doctor Str",
        "Synopsis": "In Marvel Studios' Doctor Strange in the Multiverse of Madness, the MCU unlocks the Multiverse and pushes its boundaries further than ever before … ",
        "PosterGraphic": "https://backoffice.angacinemas.com/uploads/202204220100577639.jpg",
        "Genre": "Action",
        "Rating": "R16"
    },...
]

Untitled