import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
asters: {
type: "app",
app: "asters",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.asters.ai/api/external/v1.0/workspaces`,
headers: {
"x-api-key": `${this.asters.$auth.api_key}`,
},
})
},
})
Emit new event when a label is added to a post. See the documentation
Retrieve the list of all labels of a specific workspace. See the documentation
Retrieve the list of posts' analytics of a social account. See the documentation
Retrieve the list of all social accounts of a specific workspace. See the documentation
Asters uses API keys for authentication. When you connect your Asters account, Pipedream securely stores the keys so you can easily authenticate to Asters APIs in both code and no-code steps.