0

I am trying to install a mailchimp extension on firebase.

my users firestore looks like this:

enter image description here

My extension config looks like this:

enter image description here

Here is the error:

enter image description here

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
squish
  • 846
  • 12
  • 24
  • Do you have `/users/{documentId}/{documentId}` anywhere in the config? All paths should point towards a document only iirc. – Dharmaraj Aug 24 '21 at 12:03
  • @Dharmaraj thanks for the reply! Every path in the config is `/users/{documentId}` – squish Aug 24 '21 at 12:15

1 Answers1

0

I don't think you need to add the extra {documentId} to the end of your collection name -- looks like the extension is trying to add another one on for you and getting confused.

Try just setting your collection to /users and see if that fixes it.

Todd Kerpelman
  • 16,875
  • 4
  • 42
  • 40