Concessions Delivery Locations

V1

Concessions delivery locations available at a theatre.


Endpoints

Verb Endpoint Description
GET /v1/theatres/{theatre-id}/concessions/delivery-locations/{year}/{month}/{day} Get all concessions delivery locations for a theatre.

Concessions Delivery Locations Properties

Name Description
deliveryAuditoriums A list of Delivery Auditorium Representations returned.

Concessions Delivery Locations Links

Relation Description Verbs Templated
self The current list of Theatre Concessions Delivery Locations results. GET No

Delivery Auditorium Representation


Delivery Auditorium Representation Properties

Name Description
auditorium The auditorium id where the showing is taking place.
delivery-showtimes A list of showtimes for the auditorium.

Delivery Showtime


Delivery Showtime Properties

Name Description
showtime The showtime id.
performanceNumber The Radiant performance number.
movieId The movie id.
movieName The movie title.
showDateTimeUtc The show date/time in UTC (ISO-8601)
showDateTimeLocal The show date/time in the theatre's local timezone.


Examples

Get Theatre Delivery Locations.
GET  https://api.amctheatres.com/v1/theatres/610/concessions/delivery-locations/2015/6/12

Response

{
  "theatreId": 610,
  "delivery-auditorium": [
    {
      "auditorium": 1,
      "delivery-showtimes": [
        {
          "id": 26248788,
          "performanceNumber": 59128,
          "movieId": 41539,
          "movieName": "We're The Millers",
          "showDateTimeUtc": "2014-06-06T17:00:00Z",
          "showDateTimeLocal": "2014-06-06T12:00:00",
          "_links": {
            "delivery-times": {
              "href": "https://api.amctheatres.com/v2/showtimes/26248788/concession-delivery-times",
              "templated": false
            }
          }
        },
        {
          "id": 26475284,
          "performanceNumber": 98836,
          "movieId": 38095,
          "movieName": "Elysium",
          "showDateTimeUtc": "2014-06-06T20:00:00Z",
          "showDateTimeLocal": "2014-06-06T15:00:00",
          "_links": {
            "delivery-times": {
              "href": "https://api.amctheatres.com/v2/showtimes/26475284/concession-delivery-times",
              "templated": false
            }
          }
        }
      ]
    },
    {
      "auditorium": 2,
      "delivery-showtimes": [
        {
          "id": 26475214,
          "performanceNumber": 98830,
          "movieId": 41313,
          "movieName": "You're Next",
          "showDateTimeUtc": "2014-06-06T17:00:00Z",
          "showDateTimeLocal": "2014-06-06T12:00:00",
          "_links": {
            "delivery-times": {
              "href": "https://api.amctheatres.com/v2/showtimes/26475214/concession-delivery-times",
              "templated": false
            }
          }
        },
        {
          "id": 26474911,
          "performanceNumber": 98810,
          "movieId": 41653,
          "movieName": "Getaway",
          "showDateTimeUtc": "2014-06-06T20:00:00Z",
          "showDateTimeLocal": "2014-06-06T15:00:00",
          "_links": {
            "delivery-times": {
              "href": "https://api.amctheatres.com/v2/showtimes/26474911/concession-delivery-times",
              "templated": false
            }
          }
        }
      ]
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v1/theatres/610/concessions/delivery-locations/2015/6/12",
      "templated": false
    }
  }
}