with Testmo and Zoho FMS?
Appends test artifacts, fields or links to an existing automation run. See the documentation
Appends test artifacts, fields or test results to an existing thread in an automation run. See the documentation
Creates a new automation run in a target project in preparation for adding threads and test results. See the documentation
List all automation runs for a project. See the documentation
The Testmo API enables automation and integration of your testing workflows into the broader CI/CD pipeline. With Pipedream, you can use this API to trigger tests, update test cases, log results, and sync status with other project management tools. By creating custom serverless workflows on Pipedream, you can connect Testmo to various apps, manage test lifecycles, and respond to events from other services in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
testmo: {
type: "app",
app: "testmo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.testmo.$auth.sitename}.testmo.net/api/v1/user`,
headers: {
Authorization: `Bearer ${this.testmo.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_fms: {
type: "app",
app: "zoho_fms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://fsm.${this.zoho_fms.$auth.api_domain}/fsm/v1/users`,
headers: {
Authorization: `Bearer ${this.zoho_fms.$auth.oauth_access_token}`,
},
})
},
})