Get shows by duration

This call is used to fetch the shows by their duration.

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

Headers

KEY VALUE
app_key Value of the app_key
Authorization Bearer token

The request body is as follows

{
    "FromDate":"e.g 2022-07-01",
    "ToDate":"e.g 2022-08-01 "
}

Parameters

Value Type Description
FromDate string The date when the show begins
ToDate string The date when the show ends

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