action trakt_get_all_movie_releases { label: "Get all movie releases" description: "Returns all releases for a movie including country, certification, release date, release type, and note. The release type can be set to `unknown`, `premiere`, `limited`, `theatrical`, `digital`, `physical`, or `tv`. The `note` might have optional info such as the film festival name for a `premiere` release or Blu-ray specs for a `physical` release. We pull this info from [TMDB](https://developers.themoviedb.org/3/movies/get-movie-release-dates)." provider: trakt method: GET path: "/movies/{id}/releases/{country}" encoding: json input: { type: "object" properties: { country: { type: "string" } id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["country", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }