import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gami5d: {
type: "app",
app: "gami5d",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.gami5d.com/attribute/${this.gami5d.$auth.client_id}/${this.gami5d.$auth.project_id}/list/basic`,
auth: {
username: `${this.gami5d.$auth.access_key}`,
password: `${this.gami5d.$auth.secret_access_key}`,
},
})
},
})
Record an observation for evaluation in the gami5d platform. See the documentation
Gami5d uses API keys for authentication. When you connect your Gami5d account, Pipedream securely stores the keys so you can easily authenticate to Gami5d APIs in both code and no-code steps.
To retrieve your Access Key, Secret Access Key, Project ID, and Client ID
Note: Your Secret Access Key is displayed once after it is generated. Access Key, Project Id, and Client ID remain accessible via "Toolkit" > "API Credentials".