Created
March 25, 2019 13:14
-
-
Save ilyasahsan123/b9cc7c621e6f7abf07663d735674e16d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUT series/movie/1?routing=1 | |
{ | |
"id": "1", | |
"film_to_franchise": { | |
"name": "franchise" | |
}, | |
"title": "Star Wars" | |
} | |
PUT series/movie/1196?routing=1 | |
{ | |
"id": "1196", | |
"film_to_franchise": { | |
"name": "film", | |
"parent": "1" | |
}, | |
"title": "Star Wars: Episode V - The Empire Strikes Back", | |
"year": "1980", | |
"genre": [ | |
"Action", | |
"Adventure", | |
"Sci-Fi" | |
] | |
} | |
PUT series/movie/1210?routing=1 | |
{ | |
"id": "1210", | |
"film_to_franchise": { | |
"name": "film", | |
"parent": "1" | |
}, | |
"title": "Star Wars: Episode VI - Return of the Jedi", | |
"year": "1983", | |
"genre": [ | |
"Action", | |
"Adventure", | |
"Sci-Fi" | |
] | |
} | |
PUT series/movie/1210?routing=1 | |
{ | |
"id": "2628", | |
"film_to_franchise": { | |
"name": "film", | |
"parent": "1" | |
}, | |
"title": "Star Wars: Episode I - The Phantom Menace", | |
"year": "1999", | |
"genre": [ | |
"Action", | |
"Adventure", | |
"Sci-Fi" | |
] | |
} | |
PUT series/movie/5378?routing=1 | |
{ | |
"id": "5378", | |
"film_to_franchise": { | |
"name": "film", | |
"parent": "1" | |
}, | |
"title": "Star Wars: Episode II - Attack of the Clones", | |
"year": "2002", | |
"genre": [ | |
"Action", | |
"Adventure", | |
"Sci-Fi", | |
"IMAX" | |
] | |
} | |
PUT series/movie/33493?routing=1 | |
{ | |
"id": "33493", | |
"film_to_franchise": { | |
"name": "film", | |
"parent": "1" | |
}, | |
"title": "Star Wars: Episode III - Revenge of the Sith", | |
"year": "2005", | |
"genre": [ | |
"Action", | |
"Adventure", | |
"Sci-Fi" | |
] | |
} | |
PUT series/movie/122886?routing=1 | |
{ | |
"id": "122886", | |
"film_to_franchise": { | |
"name": "film", | |
"parent": "1" | |
}, | |
"title": "Star Wars: Episode VII - The Force Awakens", | |
"year": "2015", | |
"genre": [ | |
"Action", | |
"Adventure", | |
"Fantasy", | |
"Sci-Fi", | |
"IMAX" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment