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.