Scrape (Dynamic)
Is there a limit on the use of this node?
I know it works because I have had positive results, but immediately after it works it then suddenly doesn't, for about 10 minutes all I get is a navigation timeout message, until miraculously it works again....
Create Google Doc in Specific Folder
I am attempting the create new Google Docs via Buildship. The node allows me to specify the title of the doc, but I would also like to specify which folder on my google drive it is saved in. How can I specify the folder? This is a static folder, ie it would be the same each time the node is run.
Solution:
Hey @syraxidlemind. We'll be adding more OAuth Nodes soon in near future for google workspace.
NPM issues?
Is there currently a problem with the NPM packages? Everything I'm trying to create at the moment is creating errors for packages that can not be resolved...
chroma-js
express
canvas
To name a few...
Solution:
Hi @Chris Wright | Brandmember You can use AI to generate node with AI, it will import the desired packages correctly, you can specify in prompt to use which package. https://docs.buildship.com/ai-nodes
Also, if you import manually, make sure to always import any npm package using Named import declaration. Example:
import module from "module-name"; &
import chroma from "chroma-js";
;...scheduler post automation
There is a way to create an scheduler in buildship to, per example, send a post request after X seconds in the same flow test? Like we run multiple POST iterations?
Solution:
Hi @Gabriel Coelho The above generated answer with links should help you create a scheduler automation for you usecase, you can use this schedule cron trigger - https://docs.buildship.com/trigger-nodes/scheduled-cron Feel free to ask more questions.
Hi Everyone,
I am testing an API which sends data to Google Sheets. I am struggling to send data to sheets which is the first sheet. Would someone be able to help?
Solution:
Hi @GGB The Add Row node is working fine, the is that the sheet name you are using in the Get Sheets node is wrong, and it won't fetch the data. Seems you have mistakenly added the range in the sheet name. - Retirement Spending!B2:B24, on the Get Sheets, you can remove the range and confirm the sheet's name.
Also, if you execute a full workflow test and check the logs you should be able to see the inputs of the Add Row in the logs it is updating/adding rows to the correct sheet.
And the data format should be in this form
[...

Custom Lo-Code for Node
Everything I am reading indicates that you can modify the Node Logic directly. I have started with a base API Call node and then attempting to add additional Inputs. They show up in the node box but I am not able to use them in the code itself. Whenever I modify the code and hit "Save" the changes are lost.
What am I missing?...
Solution:
closing as inactive thread. @pgiesin let us know if you still get this issue. Feel free to topup the post.
Calling for secret key from JS
Hello I am having issues utilizing my secret key on buildship when creating a node juse from code. The code works when I put the API in directly but I dont know now to call for the secret key that is stored out side of the file so that I dont have to include the API in the script
Branch if statement help: Cannot read properties of undefined
I have a Rest API Call node at the top of my workflow. It has a query param called "api_key". For the next node, I have a branch node. I thought it would be simple to have an "if" statement with the branch.
So, in the branch node, I have this code: ctx["root"]["request"]["query"].api_key == '12345'
Then, on the true branch, I go ahead and run my next bit of code. On the false branch, I just return a message. ...
Solution:
@macphreak
The are a couple of issues in your workflow you submitted:
1. You are matching the condition to the wrong value due to which it is failing, the request header should match the value to which you are comparing. For example, if your request header is 123 then the match condition should be: (refer to the image below).
image.png...

can’t for the love of god figure out how this works
Hey, does anybody know how to connect Flutterflow with AWS S3 ? I want to upload images to different folders on my bucket depending on the image (profile pic, Ads , menu) my app is like a "Uber eats" where different Businesses have their own folders so I have everything organized
Solution:
@Uribef884 You can refer to this message - https://discord.com/channels/853498675484819476/1278136284249985154/1278374142088843386.
Need help with my output.
We are building chatbot that helps us to provide what users need by using OpenAI Assistant and MySQL nodes. One thing we noticed is, we are getting random data or answers like the image attached. Is there a fix with this? Looking forward for your answers. Thank you!
Solution:
Hi @Gaurav Chadha , Thank you for your response! I will take a look. I appreciate you!

How to remove "Null" added to all returned open streams content
Hi, I’m currently developing a simple app using FlutterFlow, and I’ve implemented a streaming OpenAI call using a template. I’ve added the necessary keys for OpenAI and an assistant with Fileseach enabled. However, I’m encountering an issue where a Null value is being appended to the end of the stream content, and occasionally, a “Source” value is also included in the stream returned by the Buildship API. The “Source” value shouldn’t be mixed with the data, but it appears to be. How can I fix th...
Solution:
@Rich91 If you add a new OpenAI Streaming node from the node explorer into your project and copy over the inputs from your old node to your new node, you shouldn't experience the null issue any longer. Let us know how you get on.
Azure OpenAI Assistant template help
I filled in the Azure OpenAI Assistant node info/keys following the youtube video. But still can't Ship, and testing the node returns error as follows:
{...
Solution:
solved. thanks for the support. made a new azure resource and reinput all the keys/details
Issue with AI Auto-Fill Data Overlap
Hi @BuildShip team,
I am using the OpenAI Assistant node with a tool that makes an API POST request to save the name, email, and phone number of the user. The name, email, and phone number are all auto-filled by the AI. While this functionality generally works well for collecting this information during conversations with users, I have encountered an issue.
I have attached a screenshot as an example....
Solution:
@Jrocks, On checking the recent and the previous logs (which shows the issue) of your shared workflow via support the newer logs shows the correct values and does not repeats, As for the new logs if you compare the request inputs - the request body
email
matches with the email
of your Update Contact node's input. On latest logs.
We have found an issue that in some of the previous executions it used previous test data and repeated the executions twice, we are looking into this and will add a fix.
For now as a workaround, could you please delete and add the Assistant node again and give a try, and ship it again, it should perhaps solve this issue. Let us know if it works and occurs again....
Type 'unknown' when trying to use API
Hi, i'm trying to use API from openfoodfacts. I've followed the tutorial but still getting error "Property 'product_name' does not exist on type 'unknown' ". I've tried various options but the closest one is when my result in test mode shows {"name": undefined}. Any help would be appreciated 🥹
Solution:
@Shizuru You'll require to pass the barcode as key and the actual barcode in the value then test. Ensure you match the key as it is case sensitive.

Providing Buildship my users Google Auth token
How do I pass Buildship my users Google auth token to use the Google nodes?
For example, instead of saving a task on my Google calendar I want the user to be able to save it to their own.
How do I pass this data to Buildship to be used in the flow?...
HTML to PDF Not using the FONTS I've specified
Hit her, I have little to no background on coding, so maybe it's my bad.
I have been trying to create a PDF document from an HTML, where in the head I specify the style of the text using a Google Font. However, the document generated does not use my style.
Here is what is in my head:...
Solution:
Where do I find docs on how to add a header with a value to a rest API call ?
I want to add Authorization with a value but the "+" symbol seems to add a new element to the output ??
When I click on the "Request headers" I don't see anything for adding values to that property...
Any help or advice is appreciated ......
Solution:
To add an Authorization header, you'll require to add it under the Request Headers, ensuring the
type
of the request headers is Object. You can clone this sample workflow - https://buildship.app/remix/ca544a0c-566c-4642-aa3b-729e7eb92474 which has an example.
Also, to learn more about headers and other components you can refer to this - https://docs.buildship.com/basics/ship-an-api and REST API Trigger docs - https://docs.buildship.com/trigger-nodes/rest-api....
Cannot read properties of undefined (reading buffer) when uploading image
I am trying to upload a local image from flutterflow to firebase by calling the "Upload File to Firebase Storage (Authenticated)" API in buildship. For the API I use a Multipart body and I assign the "uploaded local file" value to the "image" variable which is also of type "uploaded file". It seems though, as if the image doesn't get send or has the wrong format (even though it is a jpg image). Any idea what I might do wrong here?
BuildShip compliance
Hi there, I'm trying to see if I can use BuildShip for a client project but the client must remain HIPAA compliant, does BuildShip offer a pricing plan that supports a BAA?
BuildShip Database
I’m currently working with Firestore on my project and have come across Buildship, which I find very interesting. Regarding the Buildship database, I successfully integrated Firestore and can retrieve documents from my Firestore collection nodes without any issues. However, when I switch to the database view and try to create a table with the same name as my Firestore collection, I receive an error message saying, "There is no data in the Firestore collection." Could it be that this feature is o...
Solution:
@osmanFirat Both BuildShip database and Firestore database are different. BuildShip DB is an inbuilt Firestore database which comes with your project. It is not the one you access with your associated email outside BuildShip. You can refer to this conversation -https://discord.com/channels/853498675484819476/1246926649686097983/1247116854930047029.
