TD Ameritrade is a stockbroker that offers an electronic trading platform for the trade of financial assets including common stocks, preferred stocks, futures contracts, exchange-traded funds, forex, options, mutual funds, fixed income investments, margin lending, and cash management services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
td_ameritrade: {
type: "app",
app: "td_ameritrade",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tdameritrade.com/v1/userprincipals`,
headers: {
Authorization: `Bearer ${this.td_ameritrade.$auth.oauth_access_token}`,
},
})
},
})
The Filter API is a great way to build powerful workflows that can manipulate
and transform data. Here are some examples of what you can build using the
Filter API:
export default defineComponent({
async run({ steps, $ }) {
let condition = false
if (condition == false) {
$.flow.exit("Ending workflow early because the condition is false")
} else {
$.export("$summary", "Continuing workflow, since condition for ending was not met.")
}
},
})