import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
summit: {
type: "app",
app: "summit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.usesummit.com/v1/apps`,
headers: {
"x-api-key": `${this.summit.$auth.api_key}`,
},
})
},
})
Emit new event when a new model is added to your organization in Summit. See the documentation
Executes a model within Summit and captures the response fields. See the documentation
Summit uses API keys for authentication. When you connect your Summit account, Pipedream securely stores the keys so you can easily authenticate to Summit APIs in both code and no-code steps.