With the MurList API, you can build applications that manage lists of tasks, to-dos, or anything else that can be represented as a list. You can also add, remove, and update items in the list, as well as track the status of each item.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
murlist: {
type: "app",
app: "murlist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.murlist.com/campaign/all`,
headers: {
"X-API-KEY": `${this.murlist.$auth.api_key}`,
},
})
},
})
MurList uses API keys for authentication. When you connect your MurList account, Pipedream securely stores the keys so you can easily authenticate to MurList APIs in both code and no-code steps.
To retrieve your API Key,