GoSquared is the modern growth platform – designed to enable sales and marketing teams to collaborate more effectively and turn visitors into successful customers, effortlessly.
Go to siteThe GoSquared API allows you to access all of your GoSquared data, including analytics, campaigns, and more. With the API, you can build custom dashboards, integrations, and applications on top of your GoSquared data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gosquared: {
type: "app",
app: "gosquared",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gosquared.com/account/v1/sites`,
params: {
api_key: `${this.gosquared.$auth.api_key}`,
},
})
},
})
GoSquared uses API keys for authentication. When you connect your GoSquared account, Pipedream securely stores the keys so you can easily authenticate to GoSquared APIs in both code and no-code steps.
You can manage your API keys under the API Access section of your account settings