Firestore
Last updated
Was this helpful?
Last updated
Was this helpful?
The Firestore
node allows to create, read, update and delete objects on any instance of Firestore.
CASE: Collection / Add
Document data: Receives an Object
with the data to add to the collection. Learn more on .
CASE: Collection / Get
Document data: Receives an Object
with the data to add to the collection. Learn more on .
CASE: Document / Get
Document id: Receives an Object
with the document id to retrieve. Learn more on .
CASE: Document / Update
Document id: Receives an Object
with the document id to update. Learn more on .
Document data: Receives an Object
with the data to update to the document. Learn more on .
CASE: Document / Set
Document id: Receives an Object
with the document id to set. Learn more on .
Document data: Receives an Object
with the data to set to the document. Learn more on .
CASE: Document / Delete
Environment variables:
firestore: Requires Project Id, Client Email and Private Key to be set.
CASE: Collection / Add
CASE: Collection / Get
CASE: Document / Get
CASE: Document / Update
CASE: Document / Set
CASE: Document / Delete
Retrieve a document from the database.
Request (Get) ➡ Firestore (Get) ➡ Response (200)
Update a document from the database.
Request (Post) ➡ Firestore (Post) ➡ Response (200)
Document id: Receives an Object
with the document id to delete. Learn more on .
Out: Returns an Object
with the added data. Learn more on .
This operation has no parameters. Learn more on .
Out: Returns an Object
with the retrieved data. Learn more on .
Out: Returns an Object
with the update write result. Learn more on .
Out: Returns an Object
with the set write result. Learn more on .
Out: Returns an Object
with the delete write result. Learn more on .