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.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
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}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})