Skip to main content

Firebase Connector

Firebase Create, read, update, and delete documents in a Firebase Cloud Firestore database collection.

Connections

Firebase Private Key Connection

Authenticate requests to firebase using values obtained from the Google Cloud Platform.

InputCommentsDefault
Project IdProvide the unique identifier of the project from the Google Cloud Platform.
Private KeyProvide the private key from the Google Cloud Platform.
EmailProvide the client email for the GCP account.

Actions

Bulk Create Documents

Create multiple documents in a Cloud Firestore collection in a single operation

InputCommentsDefault
Connection
CollectionProvide a string value for the collection name.
DocumentsAn array of documents to be created in the collection.
[
{
"field1": "value1",
"field2": "value2"
},
{
"field1": "value3",
"field2": "value4"
}
]

Create Document

Create a document in a Cloud Firestore collection

InputCommentsDefault
CollectionProvide a string value for the collection name.
DataProvide a key value pair that represents your data.
Connection

Delete Document

Remove a document from a Cloud Firestore collection

InputCommentsDefault
CollectionProvide a string value for the collection name.
DocumentProvide a string value for the unique identifier of the document.
Connection

Get Document

Get the contents of a document in a Cloud Firestore collection

InputCommentsDefault
CollectionProvide a string value for the collection name.
DocumentProvide a string value for the unique identifier of the document.
Connection

List Collections

List all collections in a Cloud Firestore database

InputCommentsDefault
Connection

List Documents

List all documents in a Cloud Firestore collection

InputCommentsDefault
CollectionProvide a string value for the collection name.
Connection
Order ByProvide a string value for the field to order by.
Query Operators

Remove Field

Completely removes a field from a given document (may not work on a field with a null value)

InputCommentsDefault
CollectionProvide a string value for the collection name.
DocumentProvide a string value for the unique identifier of the document.
Field To RemoveProvide a string value for the name of the field you would like to remove from the document.
Connection

Update Document

Updates a document in a Cloud Firestore collection

InputCommentsDefault
CollectionProvide a string value for the collection name.
DocumentProvide a string value for the unique identifier of the document.
DataProvide a key value pair that represents your data.
Connection