API ConnectorPlugin by Bubble. Posting in case someone else needs this answer.
Connecting this plugin to Stripe through a GET call, I used the parameters option.
endpoint /v1/customers/[cus_xxxxxxx]
Initializing the call, kept producing an error, asking me to remove the slash at the end. I’d remove the slash, and the call produced an error, because the call looked something like this:
http://api.stripe.com/v1/customerscus_xxxxxxx
Solution?
Initialize the call with an actual cus_xxxxxxx filled in, then delete it and leave the field blank. It needed the field to have a value in order to initialize.