TestMonitor, a modern software tool for functional, user- and acceptance tests of software implementations with one goal only: Testing with a smile!
Go to siteThe TestMonitor API provides you with a powerful way to manage and measure your software testing process. With it you can build custom test scripts and integrations that span multiple systems and platforms. Here are just a few examples of what you can create with the TestMonitor API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
testmonitor: {
type: "app",
app: "testmonitor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.testmonitor.$auth.domain}.testmonitor.com/api/v1/users`,
headers: {
Authorization: `Bearer ${this.testmonitor.$auth.api_token}`,
},
})
},
})
TestMonitor uses API keys for authentication. When you connect your TestMonitor account, Pipedream securely stores the keys so you can easily authenticate to TestMonitor APIs in both code and no-code steps.
You can get your API Token from your TestMonitor account by going to My Account, then API.
If your TestMonitor URL is https://123.testmonitor.com/
, your domain is 123
.