Microsoft Excel

You can use Microsoft Graph to allow web and mobile applications to read and modify Excel workbooks stored in OneDrive for Business, SharePoint site or Group drive.

Integrate the Microsoft Excel API with the Holded API

Setup the Microsoft Excel API trigger to run a workflow which integrates with the Holded API. Pipedream's integration platform allows you to integrate Microsoft Excel and Holded remarkably fast. Free for developers.

Create Contact with Holded API on New Item Updated (Instant) from Microsoft Excel API
Microsoft Excel + Holded
 
Try it
Add A Worksheet Tablerow with Microsoft Excel API on New Contact Created from Holded API
Holded + Microsoft Excel
 
Try it
Add A Worksheet Tablerow with Microsoft Excel API on New Invoice Created from Holded API
Holded + Microsoft Excel
 
Try it
Send Email with Holded API on New Item Updated (Instant) from Microsoft Excel API
Microsoft Excel + Holded
 
Try it
Update Invoice with Holded API on New Item Updated (Instant) from Microsoft Excel API
Microsoft Excel + Holded
 
Try it
New Item Updated (Instant) from the Microsoft Excel API

Emit new event when an item is updated.

 
Try it
New Contact Created from the Holded API

Emit new event when an existing contact is created in Holded. See the docs.

 
Try it
New Invoice Created from the Holded API

Emit new event when invoice is generated in Holded. See the docs.

 
Try it
Add A Worksheet Tablerow with the Microsoft Excel API

Adds rows to the end of specific table. See the documentation

 
Try it
Create Contact with the Holded API

Add a new contact to Holded. See the docs.

 
Try it
Update Worksheet Tablerow with the Microsoft Excel API

Update the properties of tablerow object. (Only for work or school account) See the documentation

 
Try it
Send Email with the Holded API

Deliver an email with a document to a contact through Holded. See the docs.

 
Try it
Update Invoice with the Holded API

Modify an existing invoice in Holded. See the docs.

 
Try it

Overview of Microsoft Excel

The Microsoft Excel API on Pipedream allows you to automate spreadsheet tasks, manipulate data, and integrate Excel with other apps and services. Through Pipedream, you can create serverless workflows that react to events, perform operations on Excel files like reading, writing, updating cells, and managing worksheets. This API turns Excel into a powerful tool for data analysis, report generation, and task automation without manual intervention.

Connect Microsoft Excel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    microsoft_excel: {
      type: "app",
      app: "microsoft_excel",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://graph.microsoft.com/v1.0/me`,
      headers: {
        Authorization: `Bearer ${this.microsoft_excel.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Holded

The Holded API offers access to a versatile platform that combines accounting, invoicing, inventory, and project management. It's designed to streamline various business processes. With Pipedream, you can connect Holded to hundreds of other apps to automate workflows. This means you can sync invoices with your CRM, get real-time alerts for new sales, or even automate inventory updates. The API's endpoints allow you to manage contacts, products, accounting, and more, enabling your business to stay organized and efficient.

Connect Holded

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    holded: {
      type: "app",
      app: "holded",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.holded.com/api/invoicing/v1/contacts`,
      headers: {
        "Accept": `application/json`,
        "key": `${this.holded.$auth.api_key}`,
      },
    })
  },
})