1SaaS brings you the tool platform for all your projects when working with low-code, no-code, APIs and automation. #BreakLimits
Emit new events each time a row or rows are added to the bottom of a spreadsheet. To use this source with a spreadsheet in a Shared Drive, use the New Row Added (Shared Drive, Instant) source instead.
Emit new events each time a row or rows are added to the bottom of a spreadsheet in a shared drive
Emit new event each time a row or cell is updated in a spreadsheet. To use this source with a spreadsheet in a Shared Drive, use the New Updates (Shared Drive, Instant) source instead.
Emit new event each time a row or cell is updated in a spreadsheet in a shared drive
Emit new event each time a new worksheet is created in a spreadsheet. To use this source with a spreadsheet in a Shared Drive, use the New Worksheet (Shared Drive, Instant) source instead.
Using the 1SaaS API, you can build a wide range of cloud applications for
automating various types of activities. The API can be used for developing
programs and applications to increase efficiency and productivity in areas such
as accounting, customer relationship management, stock management, invoice
management and more.
The API is specifically designed to enable developers to easily integrate their
systems with the 1SaaS platform, allowing them to connect and communicate with
their customers as well as with other companies. The API has been developed
with an emphasis on flexibilty, scalability, and security, giving developers
the ability to build highly customized solutions for businesses of all sizes.
Here are some examples of what you can build with the 1SaaS API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
onesaas: {
type: "app",
app: "onesaas",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://v2.1saas.co/1saas/auth`,
headers: {
"auth": `${this.onesaas.$auth.api_key}`,
},
})
},
})
Some examples of things you can build using the Google Sheets API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_sheets: {
type: "app",
app: "google_sheets",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_sheets.$auth.oauth_access_token}`,
},
})
},
})