This representation is not yet finalized and is subject to change.
This representation is not public and is for internal use only.
Concessions delivery times available for the order and showtime.
Verb | Endpoint | Description | |
---|---|---|---|
GET | /v3/orders/{orderId:long}/showtimes/{showtimeId:int}/concession-delivery-times | Get all concession delivery times for a showtime. |
Name | Description |
---|---|
ConcessionsDeliveryTimes | A list of Concession Delivery Time Representations returned. |
Relation | Description | Verbs | Templated |
---|---|---|---|
self | The current list of Theatre Concession Delivery Times results. | GET | No |
Name | Description |
---|---|
available | The number of delivery time slots available. |
deliveryDateTimeUtc | The delivery time in UTC. |
deliveryDateTimeLocal | The theatre's local delivery time. |
isDefault | Indicator to tell which delivery time should be displayed as the default selection. |
GET https://api.amctheatres.com/v3/orders/1234567/showtimes/26248788/concession-delivery-times
{ "showtimeId": 26248788, "deliveryTimes": [ { "deliveryDateTimeUtc": "2015-06-12T16:35:00Z", "deliveryDateTimeLocal": "2015-06-12T11:35:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T16:45:00Z", "deliveryDateTimeLocal": "2015-06-12T11:45:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T16:55:00Z", "deliveryDateTimeLocal": "2015-06-12T11:55:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T17:05:00Z", "deliveryDateTimeLocal": "2015-06-12T12:05:00", "available": 10, "IsDefault": true }, { "deliveryDateTimeUtc": "2015-06-12T17:15:00Z", "deliveryDateTimeLocal": "2015-06-12T12:15:00", "available": 10, "IsDefault": false } ] }
GET https://api.amctheatres.com/v3/orders/12345678/showtimes/26248788/concession-delivery-times
{ "showtimeId": 26248788, "deliveryTimes": [ { "deliveryDateTimeUtc": "2015-06-12T16:35:00Z", "deliveryDateTimeLocal": "2015-06-12T11:35:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T16:45:00Z", "deliveryDateTimeLocal": "2015-06-12T11:45:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T16:55:00Z", "deliveryDateTimeLocal": "2015-06-12T11:55:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T17:05:00Z", "deliveryDateTimeLocal": "2015-06-12T12:05:00", "available": 10, "IsDefault": true }, { "deliveryDateTimeUtc": "2015-06-12T17:15:00Z", "deliveryDateTimeLocal": "2015-06-12T12:15:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T17:25:00Z", "deliveryDateTimeLocal": "2015-06-12T12:25:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T17:35:00Z", "deliveryDateTimeLocal": "2015-06-12T12:35:00", "available": 10, "IsDefault": false }, { "deliveryDateTimeUtc": "2015-06-12T17:45:00Z", "deliveryDateTimeLocal": "2015-06-12T12:45:00", "available": 10, "IsDefault": false } ] }