with GitLab and Mailercloud?
Adds a new contact to a selected list in the user's Mailercloud account. See the documentation
Creates a new list in the user's Mailercloud account. See the documentation
Update an existing contact in the user's Mailercloud account. See the documentation
The GitLab API provides programmatic access to your GitLab projects, allowing you to automate common tasks, manage issues, merge requests, and more. With the GitLab API on Pipedream, you can create customized workflows that integrate with other services, streamline your development process, and enhance project management. By leveraging the power of serverless, you can set up triggers for GitLab events and perform actions across a variety of apps without managing infrastructure.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { gitlab: { type: "app", app: "gitlab", } }, async run({steps, $}) { return await axios($, { url: `https://${this.gitlab.$auth.base_api_url}/api/v4/user`, headers: { Authorization: `Bearer ${this.gitlab.$auth.oauth_access_token}`, }, }) }, })
Mailercloud API opens the door to robust email marketing and automation possibilities. Within Pipedream's serverless environment, you can leverage this API to create, send, and track email campaigns, manage subscriber lists, and analyze performance metrics. It fits seamlessly into workflows that require communication with customers or internal teams, growing and nurturing leads, or automating email-based tasks.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { mailercloud: { type: "app", app: "mailercloud", } }, async run({steps, $}) { return await axios($, { url: `https://cloudapi.mailercloud.com/v1/client/plan`, headers: { "Authorization": `${this.mailercloud.$auth.api_key}`, }, }) }, })