Ninox is the software with which anyone can develop individual business applications without programming knowledge.
Go to siteThe Ninox API provides a powerful way to build and manage web applications. With Ninox, web developers can create and customize applications to fit their exact needs.
Ninox's API makes it easy to build any kind of web application. Here are some of the applications you can create using Ninox:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ninox: {
type: "app",
app: "ninox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ninox.com/v1/teams`,
headers: {
Authorization: `Bearer ${this.ninox.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Ninox uses API keys for authentication. When you connect your Ninox account, Pipedream securely stores the keys so you can easily authenticate to Ninox APIs in both code and no-code steps.
To retrieve your API key,