Updating data through Rest API

I have an application which displays brand data from a Rest API. I need the ability to edit this data in the platform and update it back to the database using Rest API.

Queries I have

  1. Load Brands (rest API)
  2. Update Brands (rest API)

I have seen how to do this with Postgres but haven't seen how to do it through rest api. Thanks!

Hey @mafibee, welcome to the community :hugs:

Like a GET Query, you also can create a PATCH one that edits your data.

Take a look at the documentation here.

Basically, you just change the HTTP protocol of the query and include the data you want to send to the api in the body in a way that your API understands.