In this tutorial, you learn the operations to add a new movie into the service.
Expect this tutorial to take about 15 minutes to complete.
Make sure you’ve completed the Before you start a tutorial topic on the development system you’ll use for the tutorial.
You can add a new movie in Visual Chronicle. To do so, POST
a new movie
resource containing the movie’s details.
To add a new movie:
If your local service is not running, start it.
cd <your-github-workspace>/visual-chronicle/api
# Run the service and monitor its database file for updates
json-server database.json
/movies
Content-Type: application/json
Request body: raw
You can change the values of each property as you’d like.
{
"title": "Forrest Gump",
"release_year": 1994,
"director": "Robert Zemeckis"
}
Watch for the response body, which should look something like this. Note that the property values should be the same as you used in your Request body and the response should include the new movie’s id
.
{
"id": 9
"title": "Forrest Gump",
"release_year": 1994,
"director": "Robert Zemeckis"
}
After doing this tutorial in Postman, you might like to repeat it in your favorite programming language. To do this, adapt the values from the tutorial to the properties and arguments that the language uses to make REST API calls.