Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Initiates a new conversation with a Bot9 chatbot. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Bot9 API enables automated interactions with trading systems, allowing users to execute, manage, and analyze trades through a programmatic interface. In Pipedream, you can leverage this API to craft serverless workflows that handle trading tasks, notifications, and analyses without needing to build a full backend system. This can speed up trade execution, improve response times to market changes, and enable complex trading strategies that adjust to live market data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bot9: {
type: "app",
app: "bot9",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apiv1.bot9.ai/api/auth/account`,
headers: {
Authorization: `Bearer ${this.bot9.$auth.api_key}`,
},
})
},
})