with Redmine and Turso?
Creates a new database in a group for the organization or user. See the documentation
Returns a list of databases belonging to the organization or user. See the documentation
The Redmine API allows for integration with the Redmine project management tool, enabling the automation of tasks like issue tracking, project management, and time tracking. Using Pipedream, you can create workflows that trigger on specific Redmine events or perform actions in Redmine based on triggers from other apps. By harnessing the Redmine API on Pipedream, you can connect Redmine with a multitude of other apps and services to streamline your project management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
redmine: {
type: "app",
app: "redmine",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.redmine.$auth.hostname}/my/account.json`,
headers: {
"Content-Type": `application/json`,
"X-Redmine-API-Key": `${this.redmine.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
turso: {
type: "app",
app: "turso",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.turso.tech/v1/organizations`,
headers: {
Authorization: `Bearer ${this.turso.$auth.api_token}`,
},
})
},
})