with Screenshot API and DeployHQ?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshot_api: {
type: "app",
app: "screenshot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://shot.screenshotapi.net/v3/screenshot`,
params: {
token: `${this.screenshot_api.$auth.api_key}`,
url: `https://google.com`,
output: `JSON`,
},
})
},
})
DeployHQ is a service that automates the deployment of your web applications. By integrating with version control systems, DeployHQ can automatically deploy code changes to various environments. Using the DeployHQ API on Pipedream, you can orchestrate deployments, manage your projects, and synchronize deployment activities with other tools in your toolchain. It opens up possibilities for custom deployment workflows, notifications, monitoring, and more, all connected within the Pipedream ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
deployhq: {
type: "app",
app: "deployhq",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.deployhq.$auth.account_name}.deployhq.com/projects`,
headers: {
"Accept": `application/json`,
"Content-Type": `application/json`,
},
auth: {
username: `${this.deployhq.$auth.email}`,
password: `${this.deployhq.$auth.api_key}`,
},
})
},
})