import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
v7_go: {
type: "app",
app: "v7_go",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://go.v7labs.com/api/workspaces/${this.v7_go.$auth.workspace_id}/members`,
headers: {
"X-API-KEY": `${this.v7_go.$auth.api_key}`,
},
})
},
})
Initiates the creation of a new project with a unique project identifier. See the documentation
V7 Go uses API keys for authentication. When you connect your V7 Go account, Pipedream securely stores the keys so you can easily authenticate to V7 Go APIs in both code and no-code steps.