Modern and easy-to-use job board software.
Emit new event when a new job alert email subscription is created
Emit new event each time a new job is published in Niceboard
Emit new event when a new message is posted in a channel
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
The Niceboard API allows for the seamless integration and automation of job board functionalities. With this API, you can programmatically create job listings, manage applications, and handle user interactions on your Niceboard-powered job platform. Leveraging Pipedream's capabilities, you can connect Niceboard to a myriad of other apps and services to streamline job board operations, enhance user engagement, and automate repetitive tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
niceboard: {
type: "app",
app: "niceboard",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apidirectories.niceboard.co/api/v1/jobs?key=${this.niceboard.$auth.secret_key}`,
})
},
})
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}`,
},
})
},
})