import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
help_scout_api_keys: {
type: "app",
app: "help_scout_api_keys",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://docsapi.helpscout.net/v1/collections`,
auth: {
username: `${this.help_scout_api_keys.$auth.api_key}`,
password: `X`,
},
})
},
})
Retrieve a single article by ID or number. See the documentation
Retrieve a list of articles by collection or category. See the documentation
Search for articles by keyword. See the documentation
Help Scout (API Keys) uses API keys for authentication. When you connect your Help Scout (API Keys) account, Pipedream securely stores the keys so you can easily authenticate to Help Scout (API Keys) APIs in both code and no-code steps.