With the eTermin API, you can build software that allows users to:
This is just a small sample of what you can build – the possibilities are endless!
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
etermin: {
type: "app",
app: "etermin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.etermin.net/api/company`,
headers: {
"publickey": `${this.etermin.$auth.public_key}`,
"salt": `${this.etermin.$auth.salt}`,
"signature": `${this.etermin.$auth.signature}`,
},
})
},
})
eTermin uses API keys for authentication. When you connect your eTermin account, Pipedream securely stores the keys so you can easily authenticate to eTermin APIs in both code and no-code steps.
Every request to eTermin requires 3 elements in the header:
For details on how to create the salt and signature, refer to eTermin's documentation.