with Venly (NFT API) and Microsoft Viva Goals?
Creates a template or token type that allows for minting of new NFTs. See the documentation
Deploys a new NFT contract, or collection, on a specific blockchain. See the documentation
The Venly (NFT API) provides a platform for managing and integrating Non-Fungible Tokens (NFTs) into applications. With this API, you can create and manage wallets, mint and transfer NFTs, and query blockchain data, among other features. Leveraging the Venly API within Pipedream allows developers to streamline NFT operations by creating automated workflows, connecting to other services, and processing blockchain events in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
venly: {
type: "app",
app: "venly",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.venly.$auth.service_environment}/api/env`,
headers: {
Authorization: `Bearer ${this.venly.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_viva_goals: {
type: "app",
app: "microsoft_viva_goals",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/beta/employeeExperience/goals/exportJobs`,
headers: {
Authorization: `Bearer ${this.microsoft_viva_goals.$auth.oauth_access_token}`,
},
})
},
})