With the Logoraisr API, you can create amazing applications that help you gather feedback from your users. Here are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
logoraisr: {
type: "app",
app: "logoraisr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.logoraisr.com/rest-v1/processes/`,
headers: {
"Authorization": `Token ${this.logoraisr.$auth.api_key}`,
},
})
},
})
Logoraisr uses API keys for authentication. When you connect your Logoraisr account, Pipedream securely stores the keys so you can easily authenticate to Logoraisr APIs in both code and no-code steps.
To retrieve your API key,