Firebase Patch API

Database & APIs

I am trying to update my Firebase using an API call that patches data to change specific values. for example i am trying to make a system that allows users to request for a tool to be added to the app.

it is currently set up where the user adds it and the status is set as pending. then the request gets sent to an external source. the data being sent is:

  • the document ID

  • Tool_Name

  • Status

  • Email of Requestee

this data is being sent to an air table where the status will be updated and then an automation fires.

the air table currently holds:

ID being the document id in firebase

I would like the automation to make a patch API call to update the document of the tool to what we updated it to. i have that set up i just dont know how to set up the HTTP module to perform the patch request.

What have you tried so far?

I tried sending the patch request directly to the app using:

However the HTTP module threw an error saying the requested method could not find the endpoint.

i then saw that someone had attempted to do the same on Supabase using their API key from that

and wondered if there was a way to do it like this in Firebase using our API key

Did you check FlutterFlow's Documentation for this topic?
No