...

/

Implement the PUT Endpoint for Updating an Existing Product

Implement the PUT Endpoint for Updating an Existing Product

Learn how to implement products API using Flask to update an existing product.

We'll cover the following...

REST API uses PUT to update an existing resource in a collection. We’ll see how to implement an API endpoint that uses PUT to update an existing product in the collection.

The request object of Flask can be used to retrieve the body of a PUT request, and path parameter mapping can be used to get the ID of the product to be updated. The Route decorator can be used to map a method to the PUT request. Let’s see how to do the same.

Steps

  1. Open server/api/products_api.py.

  2. Add a new method. Name the method update_product. Provide it the required parameter, which is product ID, and name the parameter product_id. ...

def update_product(product_id):
  1. Add the following code.