with Sellsy and L2S?
Generates a shortened URL utilizing L2S capabilities. See the documentation
The Sellsy API allows you to automate and enhance your customer relationship management and sales processes. Via Pipedream, a serverless integration and automation platform, you can leverage the API to sync data, trigger workflows based on specific actions within Sellsy, and connect Sellsy with a multitude of other services to streamline operations, enhance user engagements, and optimize sales activities.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sellsy: {
type: "app",
app: "sellsy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sellsy.com/v2/teams`,
headers: {
Authorization: `Bearer ${this.sellsy.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
l2s: {
type: "app",
app: "l2s",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.l2s.is/user/setting`,
headers: {
Authorization: `Bearer ${this.l2s.$auth.api_key}`,
},
})
},
})