How do you recommend to recover the collection of a film? It can be found from "/movie/{id}" but I update my films only with "/movie/{id}/changes". I find that the "/changes/" endpoint lacks a lot of data... we are forced to make a request on another endpoint to recover only one data.
Thank you.
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by robbie3999
on July 4, 2023 at 11:02 AM
Hi @TheSizkarn, if you are searching on movie id, you can combine the basic movie details request with changes by using append_to_response. For example
Reply by TheSizkarn
on July 4, 2023 at 11:05 AM
Oh yes! I didn’t know that we could also add "changes" with "append_to_response"!
Thank you for your help