A film is a motion picture that is shown in a cinema. Films can also be other types of content that can be shown in a cinema.
A film is a product that can be shown in a cinema.
film_id required | string (Film_id) The |
title required | string The name of the film. This is how the film will be displayed within Movio EQ. |
distributor | string The distributor of the film. |
rating | string The rating of the film. |
opening_date | string <date> This is the date that the film were offically released to the public. |
genres | Array of strings (Genres) The genres of the film. |
{- "film_id": "captain_america-civil_war",
- "title": "Captain America: Civil War",
- "distributor": "Walt Disney Pictures",
- "rating": "M",
- "opening_date": "2024-08-06",
- "genres": [
- "Action",
- "Adventure"
]
}
Creates or updates a film in the system. This will create the film in
Movio if the film does not exist. If the film exists, then the film with
the same film_id
will be one to one replaced with the new film.
The films to be created.
The response to a bulk request that succeeded.
The response to a bulk request that failed.
The request has not been applied because it lacks valid authentication credentials for the target resource.
The request was well-formed but was unable to be followed due to semantic errors.
[- {
- "film_id": "captain_america-civil_war",
- "title": "Captain America: Civil War",
- "distributor": "Walt Disney Pictures",
- "rating": "M",
- "opening_date": "2024-08-06",
- "genres": [
- "Action",
- "Adventure"
]
}
]
{- "total": 3,
- "created_count": 2,
- "updated_count": 1
}
Deletes a film from the system. This effectively remove the film from Movio. Useful when a film is no longer available for screening. Movio will keep the film in the system for historical purposes.
The film was deleted successfully.
The request could not be understood by the server due to malformed syntax.
The request has not been applied because it lacks valid authentication credentials for the target resource.
The request was well-formed but was unable to be followed due to semantic errors.
The request could not be understood by the server due to malformed syntax. The client should not repeat the request without modifications.