Bhavya
Bhavya
BRBuildShip + Rowy
Created by CartoonClouds on 6/27/2024 in #❓・buildship-help
Why am I getting this error?
Hey @CartoonClouds, have replied to your support request with a similar Airtable use-case. Hope it helps!
6 replies
BRBuildShip + Rowy
Created by CartoonClouds on 6/27/2024 in #❓・buildship-help
Why am I getting this error?
Hey @CartoonClouds, could you send an in-app support request so that we can take a deeper look on what's happening? Here's how: https://docs.buildship.com/support-messages
6 replies
BRBuildShip + Rowy
Created by captain_cold. on 6/23/2024 in #❓・buildship-help
How to create multiple subscriptions with Lemon Squeezy in Buildship?
Hey @captain_cold., for the use case you mentioned with two products in the same store with monthly and yearly subscriptions, the subscription created event in the Lemon Squeezy trigger should suffice. Here’s some insight on how you can handle the differenciation between the subscriptions for the two products. If you look at the Lemon Squeezy documentation, the subscription object is the payload which would be returned every time a subscription is created. As per the docs, the payload would have a product_id property which would specify the product. You can use the switch or the branch nodes to handle the cases for different product depending upon your use case.
4 replies
BRBuildShip + Rowy
Created by Matthew on 6/11/2024 in #💬・general
Matthew - Really need this node updated. Saw th...
No description
6 replies
BRBuildShip + Rowy
Created by Ugo_Augustus on 6/7/2024 in #❓・buildship-help
I need help with "BuildShip Trigger & Execute Workflow Nodes" - (Not working)
Awesome, happy to help! 🙌
12 replies
BRBuildShip + Rowy
Created by Ugo_Augustus on 6/7/2024 in #❓・buildship-help
I need help with "BuildShip Trigger & Execute Workflow Nodes" - (Not working)
One quick thing to check... you must ship the workflow you're trying to trigger (the one with the BuildShip Trigger) before you test it out with the Execute Workflow node.
12 replies
BRBuildShip + Rowy
Created by Ugo_Augustus on 6/7/2024 in #❓・buildship-help
I need help with "BuildShip Trigger & Execute Workflow Nodes" - (Not working)
Hey @Ugo101, I see you've added the Workflow ID as an object in your Execute Workflow node when it should be a string. So, if you replace the:
{
"workflowId": "B3F713ZavMEC1D8eNaJF"
}
{
"workflowId": "B3F713ZavMEC1D8eNaJF"
}
with simply B3F713ZavMEC1D8eNaJF, it should work. You can also refer the screenshots in the documentation here. Hope this helps. If the issue still persists, we'd recommend you to send an in-app support request so that we can help you debug it.
12 replies
BRBuildShip + Rowy
Created by Frankie on 5/23/2024 in #💬・general
Frankie - @Harini @Bhavya Hello, Buildship noob...
Here you go, @Frankie... (it's pretty raw, apologies in advance 😅 ) Do let us know if you find any luck in making this work :))
8 replies
BRBuildShip + Rowy
Created by Frankie on 5/23/2024 in #💬・general
Frankie - @Harini @Bhavya Hello, Buildship noob...
Hey @Frankie, I did try out using Remotion with BuildShip a while back. I was trying to get it to work via the OpenAI Node to generate the react component. I then use the @remotion/bundler package to bundle it using Webpack, store it to BuildShip Storage, and return public url. To generate the video, I used the Server Side Rendering via @remotion/renderer. Unfortunately, I couldn't get it to work. I do have the workflow I built, if you need, I can share that with you.
8 replies
BRBuildShip + Rowy
Created by ruben.romero on 5/18/2024 in #💬・general
ruben.romero - Hi everyone, i tried to generate...
No description
4 replies
BRBuildShip + Rowy
Created by _+_ on 5/16/2024 in #💬・general
_+_ - @Gaurav Chadha can you explain in more de...
No description
13 replies
BRBuildShip + Rowy
Created by HocusPocus on 5/11/2024 in #💬・general
HocusPocus - Hey guys, I want to save the chat ...
No description
2 replies
BRBuildShip + Rowy
Created by Thomas on 5/8/2024 in #❓・buildship-help
OAuth 2.0 access
8 replies
BRBuildShip + Rowy
Created by Thomas on 5/8/2024 in #❓・buildship-help
OAuth 2.0 access
Hey @Thomas, to make an Etsy API Call via BuildShip, all you need to do is make a simple call to the Etsy API endpoint, like this:
export default async ({apiKey},{logging}) => {

const url = 'https://api.etsy.com/v3/application/openapi-ping';
const options = {
method: 'GET',
headers: {
"x-api-key": apiKey
}
};
const resp = await fetch(url, options);
const data = await resp.json();
return data;
}
export default async ({apiKey},{logging}) => {

const url = 'https://api.etsy.com/v3/application/openapi-ping';
const options = {
method: 'GET',
headers: {
"x-api-key": apiKey
}
};
const resp = await fetch(url, options);
const data = await resp.json();
return data;
}
Here's a boilerplate node that you can copy and paste in your workflow. You can also use the "Modify Node with Al" feature to modify it according to your use case, learn more. Hope this helps :)
8 replies
BRBuildShip + Rowy
Created by PaperB0y on 4/8/2024 in #❓・buildship-help
Email Trigger doesn't work with Aliases / Google Group
@PaperB0y, we checked and the email trigger seems to be working via an alias. Could you elaborate a bit more on how you're trying to send emails via google groups?
15 replies
BRBuildShip + Rowy
Created by PaperB0y on 4/8/2024 in #❓・buildship-help
Email Trigger doesn't work with Aliases / Google Group
@PaperB0y, I’ll take a look at get back to you shortly… apologies for the delay!
15 replies
BRBuildShip + Rowy
Created by JSL on 4/8/2024 in #💬・general
JSL - HiGetting this error on a workflow that...
Glad to know! 🙌
6 replies
BRBuildShip + Rowy
Created by JSL on 4/8/2024 in #💬・general
JSL - HiGetting this error on a workflow that...
Hey @JSL, we updated the Cron Trigger to fix this issue a while ago. Is it possible it's an old version? Perhaps could you try deleting it and re-adding the newer version from the Trigger Library?
6 replies
BRBuildShip + Rowy
Created by brazley on 3/7/2024 in #💬・general
brazley - hey, does anyone know how to use buil...
Hey @brazley, @andydataguy, we recently added a tutorial for a similar use case, along with some examples here. Hope this helps! 😄
5 replies
BRBuildShip + Rowy
Created by thiwa on 3/25/2024 in #❓・buildship-help
Groq (or custom code) on buildship
No description
7 replies