CRM Software CRM Platform Marketing Automation
Create an additional invite link for a chat, See the docs for more information
Edits photo or video messages. See the docs for more information
Insightly is a CRM software that helps businesses manage their customer
relationships. It offers a wide range of features including contact management,
lead capture, task management, deals, projects, and reporting.
The Insightly API allows developers to access and integrate the functionality
of Insightly with other applications. Some example API methods include managing
contacts, managing deals, and retrieving project information.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
insightly: {
type: "app",
app: "insightly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.${this.insightly.$auth.pod}.insightly.com/v3.1/Contacts`,
auth: {
username: `${this.insightly.$auth.api_key}`,
password: ``,
},
})
},
})
With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telegram_bot_api: {
type: "app",
app: "telegram_bot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
})
},
})