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
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format 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,
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})