The ultimate course platform to help you easily your own online courses in just 5 steps.
Go to siteThe Miestro API can be used to create a variety of applications, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
miestro: {
type: "app",
app: "miestro",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.miestro.com/api/v1.0/users`,
headers: {
"X-Forward-Api-Key": `${this.miestro.$auth.api_key}`,
"X-Forward-Api-Secret": `${this.miestro.$auth.api_secret}`,
},
})
},
})
Miestro uses API keys for authentication. When you connect your Miestro account, Pipedream securely stores the keys so you can easily authenticate to Miestro APIs in both code and no-code steps.
To get your Miestro API Key and Secret, log into your Miestro account, click Settings from the menu on the left, then "API".