Whistleblowing System. For Companies and Schools.
Emit new event when a new internal comment is created. Must create webhook within the Faceup UI and enter the URL of this source to receive events. See the documentation
Emit new event when a new message from a sender is created. Must create webhook within the Faceup UI and enter the URL of this source to receive events. See the documentation
Emit new event when a new report is created. Must create webhook within the Faceup UI and enter the URL of this source to receive events. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
faceup: {
type: "app",
app: "faceup",
}
},
async run({steps, $}) {
const data = {
"query": `query Statistics {
publicStatistics(
dateFrom: "2024-04-17T01:34:56.000Z"
) {
reportCountByMonth
}
}`,
}
return await axios($, {
method: "post",
url: `https://www.api.faceup.com/graphql`,
headers: {
"X-Region": `${this.faceup.$auth.region}`,
"Authorization": `${this.faceup.$auth.api_key}`,
},
data,
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.