import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dotsimple: {
type: "app",
app: "dotsimple",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.dotsimple.io/app/api/${this.dotsimple.$auth.workspace_id}/accounts`,
headers: {
Authorization: `Bearer ${this.dotsimple.$auth.access_token}`,
},
})
},
})
Emit new event when a new account is connected. See the documentation.
Emit new event when a new file is uploaded. See the documentation.
Emit new event when a new post is created on the platform. See the documentation.
Amend an existing post on your DotSimple site. See the documentation
DotSimple uses API keys for authentication. When you connect your DotSimple account, Pipedream securely stores the keys so you can easily authenticate to DotSimple APIs in both code and no-code steps.