Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Emit new event when a new NFT is minted in NiftyKit. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The NiftyKit API offers a platform to create, sell, and manage digital collectibles on the blockchain. Users can mint non-fungible tokens (NFTs), set up drop campaigns, and handle various aspects of the NFT lifecycle. Integrating NiftyKit with Pipedream enables users to automate workflows related to NFTs, like minting in response to events, updating listings based on market conditions, or synchronizing NFT ownership data with other databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
niftykit: {
type: "app",
app: "niftykit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.niftykit.com/v3/collections/reveal`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.niftykit.$auth.api_access_key}`,
},
})
},
})