with Bidsketch and TestLocally?
Emit new event when a new test is run or completed in TestLocally. See the documentation
Get details of a specific test in TestLocally. See the documentation
The Bidsketch API offers a gateway to streamline your proposal creation and management process. It empowers users to automate the drafting of proposals, maintain client data, and track proposal statuses without the manual hassle. With Pipedream, you can connect Bidsketch to a multitude of other apps, crafting workflows that trigger actions based on events such as proposal acceptance or comment additions, thus ensuring timely follow-ups and efficient client interaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bidsketch: {
type: "app",
app: "bidsketch",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bidsketch.com/api/v1/clients`,
headers: {
"Authorization": `Token token=${this.bidsketch.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
testlocally: {
type: "app",
app: "testlocally",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://testlocal.ly/api/v0/me`,
headers: {
Authorization: `Bearer ${this.testlocally.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})