We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Endpoints for tv shows include:
TV shows endpoints:
GET /tv_shows - Gets all tv shows.
GET
/tv_shows
POST /tv_shows - Create a tv show.
POST
GET /tv_shows/{uri} - Get a single tv show.
/tv_shows/{uri}
PUT /tv_shows/{uri} - Update a single tv show.
PUT
DELETE /tv_shows/{uri} - Delete a single tv show. Delete all episodes and episode versions.
DELETE
TV episodes endpoints:
GET /tv_shows/{uri}/episodes - Gets all tv episodes for the given tv show.
/tv_shows/{uri}/episodes
POST /tv_shows/{uri}/episodes - Create a tv show episode.
DELETE /tv_shows/{uri}/episodes - Delete all episodes and episode versions for the tv show.
GET /tv_shows/episodes/{uri} - Get a single tv show episode.
/tv_shows/episodes/{uri}
PUT /tv_shows/episodes/{uri} - Update a single tv episode.
DELETE /tv_shows/episodes/{uri} - Delete a single tv episode. Delete all episode versions.
TV episode versions endpoints:
GET /tv_show/episodes/{uri}/versions - Gets all versions of a tv episode.
/tv_show/episodes/{uri}/versions
POST /tv_show/episodes/{uri}/versions - Create a tv episode version.
DELETE /tv_show/episodes/{uri}/versions - Delete all versions of a tv episode.
GET /tv_show/episodes/versions/{uri} - Get a single tv episode version.
/tv_show/episodes/versions/{uri}
PUT /tv_shows/episodes/versions/{uri} - Update a single tv episode version.
/tv_shows/episodes/versions/{uri}
DELETE /tv_shows/episodes/versions/{uri} - Delete a single tv episode version.
The text was updated successfully, but these errors were encountered:
joe-eklund
No branches or pull requests
Endpoints for tv shows include:
TV shows endpoints:
GET
/tv_shows
- Gets all tv shows.POST
/tv_shows
- Create a tv show.GET
/tv_shows/{uri}
- Get a single tv show.PUT
/tv_shows/{uri}
- Update a single tv show.DELETE
/tv_shows/{uri}
- Delete a single tv show. Delete all episodes and episode versions.TV episodes endpoints:
GET
/tv_shows/{uri}/episodes
- Gets all tv episodes for the given tv show.POST
/tv_shows/{uri}/episodes
- Create a tv show episode.DELETE
/tv_shows/{uri}/episodes
- Delete all episodes and episode versions for the tv show.GET
/tv_shows/episodes/{uri}
- Get a single tv show episode.PUT
/tv_shows/episodes/{uri}
- Update a single tv episode.DELETE
/tv_shows/episodes/{uri}
- Delete a single tv episode. Delete all episode versions.TV episode versions endpoints:
GET
/tv_show/episodes/{uri}/versions
- Gets all versions of a tv episode.POST
/tv_show/episodes/{uri}/versions
- Create a tv episode version.DELETE
/tv_show/episodes/{uri}/versions
- Delete all versions of a tv episode.GET
/tv_show/episodes/versions/{uri}
- Get a single tv episode version.PUT
/tv_shows/episodes/versions/{uri}
- Update a single tv episode version.DELETE
/tv_shows/episodes/versions/{uri}
- Delete a single tv episode version.The text was updated successfully, but these errors were encountered: