Overledger Platform. The enterprise standard for building on blockchain.
Emit new event for transactions to/from a specific account.
Emit new event when a smart contract releases a new event.
Emits an event each time a new contact is created in Zoho CRM
Executes a signed transaction by sending it to a blockchain node via Overledger. See the documentation
Converts a Lead into a Contact or an Account. See the documentation
Downloads an attachment file from Zoho CRM, saves it in the temporary file system and exports the file path for use in a future step.
Prepares a smart contract transaction for signing on the Overledger platform. See the documentation
The Overledger API by Quant Network allows developers to interact with multiple blockchain networks. It facilitates the creation, reading, and execution of smart contracts and transactions across different blockchains. This API simplifies the complex nature of blockchain interoperability, enabling multi-chain applications (MApps) through a single gateway.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
overledger: {
type: "app",
app: "overledger",
}
},
async run({steps, $}) {
const data = {
"location": {
"technology": "Ethereum",
"network": "Ethereum Sepolia Testnet"
}
}
return await axios($, {
method: "post",
url: `https://api.sandbox.overledger.io/v2/autoexecution/search/block/latest`,
headers: {
Authorization: `Bearer ${this.overledger.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})
The Zoho CRM API enables the manipulation and retrieval of data within Zoho CRM, a platform for managing your sales, marketing, support, and inventory in a single system. Leveraging this on Pipedream, you can automate tasks like syncing contacts, updating lead statuses, or creating custom CRM operations that trigger actions in other apps. Pipedream's serverless platform allows for real-time data processing, transforming, and orchestrating workflows that respond to events in Zoho CRM with minimal latency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_crm: {
type: "app",
app: "zoho_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_crm.$auth.api_domain}/crm/v2/users?type=CurrentUser`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
},
})
},
})