CI/CD service for Windows, Linux and macOS. Build, test, deploy your apps faster, on any platform.
Go to siteThe AppVeyor API enables you to build, test and deploy your applications on the AppVeyor platform.
You can use the API to:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
appveyor: {
type: "app",
app: "appveyor",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ci.appveyor.com/api/roles`,
headers: {
Authorization: `Bearer ${this.appveyor.$auth.bearer_token}`,
"Content-type": `application/json`,
},
})
},
})
AppVeyor uses API keys for authentication. When you connect your AppVeyor account, Pipedream securely stores the keys so you can easily authenticate to AppVeyor APIs in both code and no-code steps.
AppVeyor uses bearer token authentication. Your token can be found on the API token page under your AppVeyor account. For more info, see the AppVeyor docs.