Lighthouse is a beautifully simple issue tracker changing the way thousands manage their issues.
The Lighthouse API provides a window into the world of SSL/TLS certificates. It lets you monitor and track certificates issued for specific domains, offering invaluable insights for security and compliance. By leveraging this API within Pipedream, you can automate certificate tracking, set up alerts for new certificates, and integrate this data with other services for a comprehensive view of your domain's security posture.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lighthouse: {
type: "app",
app: "lighthouse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.lighthouse.$auth.domain}.lighthouseapp.com/profile.json`,
headers: {
"X-LighthouseToken": `${this.lighthouse.$auth.api_token}`,
"Content-type": `application/json`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})