I can build a Markdown document with a few paragraphs, followed by a list of examples, telling me what I can build using the AMcards API.
Some things I can build using the AMcards API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
amcards: {
type: "app",
app: "amcards",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://amcards.com/.api/v1/user/`,
headers: {
Authorization: `Bearer ${this.amcards.$auth.access_token}`,
"Content-Type": `${this.amcards.$auth.access_token}`,
},
})
},
})
AMcards uses API keys for authentication. When you connect your AMcards account, Pipedream securely stores the keys so you can easily authenticate to AMcards APIs in both code and no-code steps.
To retrieve your Access Token,