← Notion + Hootsuite integrations

Schedule Message with Hootsuite API on New or Updated Page in Database (By Timestamp) from Notion API

Pipedream makes it easy to connect APIs for Hootsuite, Notion and 2,800+ other apps remarkably fast.

Trigger workflow on
New or Updated Page in Database (By Timestamp) from the Notion API
Next, do this
Schedule Message with the Hootsuite API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Notion trigger and Hootsuite action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New or Updated Page in Database (By Timestamp) trigger
    1. Connect your Notion account
    2. Configure timer
    3. Select a Database ID
    4. Configure Include New Pages
  3. Configure the Schedule Message action
    1. Connect your Hootsuite account
    2. Configure Text
    3. Select one or more Social Profile IDs
    4. Optional- Configure Scheduled Send Time
    5. Optional- Configure Webhook URLs
    6. Optional- Configure Tags
    7. Optional- Select a Targeting Facebook Page - Age Min
    8. Optional- Select one or more Targeting Facebook Page - Education
    9. Optional- Select one or more Targeting Facebook Page - Interests
    10. Optional- Select one or more Targeting Facebook Page - Relationship Status
    11. Optional- Configure Targeting Facebook Page - Country
    12. Optional- Configure Targeting Facebook Page - Regions
    13. Optional- Configure Targeting Facebook Page - Cities
    14. Optional- Configure Targeting Facebook Page - Zip
    15. Optional- Select one or more Targeting LinkedIn Company - Size
    16. Optional- Select one or more Targeting LinkedIn Company - Geography
    17. Optional- Select one or more Targeting LinkedIn Company - Industry
    18. Optional- Select one or more Targeting LinkedIn Company - Job Function
    19. Optional- Select one or more Targeting LinkedIn Company - Seniority
    20. Optional- Configure Targeting LinkedIn V2 Company - Locations
    21. Optional- Select one or more Targeting LinkedIn V2 Company - Staff Count Range
    22. Optional- Configure Targeting LinkedIn V2 Company - Seniorities
    23. Optional- Configure Targeting LinkedIn V2 Company - Industries
    24. Optional- Configure Targeting LinkedIn V2 Company - Interface Locations
    25. Optional- Select a Privacy Facebook Visibility
    26. Optional- Select a Privacy LinkedIn Visibility
    27. Optional- Configure Latitude
    28. Optional- Configure Longitude
    29. Optional- Configure Email Notification
    30. Optional- Configure Media URLs
    31. Optional- Configure Media
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a page is created or updated in the selected database. [See the documentation](https://developers.notion.com/reference/page)
Version:0.0.2
Key:notion-updated-page-by-timestamp

Notion Overview

Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.

Trigger Code

import notion from "../../notion.app.mjs";
import base from "../common/base.mjs";
import constants from "../common/constants.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...base,
  key: "notion-updated-page-by-timestamp",
  name: "New or Updated Page in Database (By Timestamp)",
  description: "Emit new event when a page is created or updated in the selected database. [See the documentation](https://developers.notion.com/reference/page)",
  version: "0.0.2",
  type: "source",
  dedupe: "unique",
  props: {
    ...base.props,
    databaseId: {
      propDefinition: [
        notion,
        "databaseId",
      ],
    },
    includeNewPages: {
      type: "boolean",
      label: "Include New Pages",
      description: "Set to `false` to emit events only for updates, not for new pages.",
      default: true,
    },
  },
  methods: {
    ...base.methods,
    _generateMeta(obj, summary) {
      const { id } = obj;
      const title = this.notion.extractPageTitle(obj);
      const ts = Date.parse(obj.last_edited_time);
      return {
        id: `${id}-${ts}`,
        summary: `${summary}: ${title}`,
        ts,
      };
    },
    _emitEvent(page, isNewPage = true) {
      const meta = isNewPage
        ? this._generateMeta(page, constants.summaries.PAGE_ADDED)
        : this._generateMeta(page, constants.summaries.PAGE_UPDATED);
      this.$emit(page, meta);
    },
  },
  async run() {
    const lastUpdatedTimestamp = this.getLastUpdatedTimestamp();
    let newLastUpdatedTimestamp = lastUpdatedTimestamp;

    const params = {
      ...this.lastUpdatedSortParam(),
      filter: {
        timestamp: "last_edited_time",
        last_edited_time: {
          on_or_after: new Date(lastUpdatedTimestamp).toISOString(),
        },
      },
    };

    const pagesStream = this.notion.getPages(this.databaseId, params);

    for await (const page of pagesStream) {
      if (lastUpdatedTimestamp > Date.parse(page.last_edited_time)) {
        break;
      }

      newLastUpdatedTimestamp = Math.max(
        newLastUpdatedTimestamp,
        Date.parse(page.last_edited_time),
      );

      const isNewPage = page.last_edited_time === page.created_time;

      if (isNewPage && !this.includeNewPages) {
        console.log(`Ignoring new page: ${page.id}`);
        continue;
      }

      this._emitEvent(page, isNewPage);
    }

    this.setLastUpdatedTimestamp(newLastUpdatedTimestamp);
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
NotionnotionappThis component uses the Notion app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Database IDdatabaseIdstringSelect a value from the drop down menu.
Include New PagesincludeNewPagesboolean

Set to false to emit events only for updates, not for new pages.

Trigger Authentication

Notion uses OAuth authentication. When you connect your Notion account, Pipedream will open a popup window where you can sign into Notion and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Notion API.

Pipedream requests the following authorization scopes when you connect your account:

About Notion

Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.

Action

Description:Schedules a message on your Hootsuite account. [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage)
Version:0.0.1
Key:hootsuite-schedule-message

Hootsuite Overview

The Hootsuite API offers a variety of endpoints to automate social media management tasks such as scheduling posts, managing social content, and analyzing social media performance. By leveraging Pipedream, you can create serverless workflows to interact with the Hootsuite API; you can schedule posts at optimal times, aggregate metrics for reporting, or even respond to social media activity in real-time. Pipedream's platform allows the seamless integration of the Hootsuite API with hundreds of other apps to streamline social media workflows, monitor brand presence, and engage with audiences effectively.

Action Code

import {
  COMPANY_SIZE_OPTIONS,
  GEOGRAPHY_OPTIONS,
  INDUSTRY_OPTIONS,
  JOB_FUNCTION_OPTIONS,
  SENIORITY_OPTIONS,
  STAFF_COUNT_RANGE_OPTIONS,
} from "../../common/constants.mjs";
import { parseObject } from "../../common/utils.mjs";
import hootsuite from "../../hootsuite.app.mjs";

export default {
  key: "hootsuite-schedule-message",
  name: "Schedule Message",
  description: "Schedules a message on your Hootsuite account. [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage)",
  version: "0.0.1",
  type: "action",
  props: {
    hootsuite,
    text: {
      type: "string",
      label: "Text",
      description: "The message text to publish.",
    },
    socialProfileIds: {
      propDefinition: [
        hootsuite,
        "socialProfileIds",
      ],
    },
    scheduledSendTime: {
      type: "string",
      label: "Scheduled Send Time",
      description: "The time the message is scheduled to be sent in UTC time, [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format. Missing or different timezones will not be accepted, to ensure there is no ambiguity about scheduled time. Dates must end with 'Z' to be accepted.",
      optional: true,
    },
    webhookUrls: {
      type: "string[]",
      label: "Webhook URLs",
      description: "The webhook URL(s) to call to when the message's state changes.",
      optional: true,
    },
    tags: {
      type: "string[]",
      label: "Tags",
      description: "The Hootsuite message tags to apply to the message. To set tags the social profile must belong to an organization. Tags are case sensitive. Limited permission members can only use the existing tags for organization and cannot create new ones. See more about message tags at the Hootsuite Help Center. Not supported by Pinterest.",
      optional: true,
    },
    targetingFacebookPageAgeMin: {
      type: "string",
      label: "Targeting Facebook Page - Age Min",
      description: "Minimum age to target the message at.",
      options: [
        "13",
        "17",
        "18",
        "19",
        "21",
      ],
      optional: true,
    },
    targetingFacebookPageEducation: {
      type: "string[]",
      label: "Targeting Facebook Page - Education",
      description: "The education level of the Facebook page to target.",
      options: [
        "highSchool",
        "college",
        "collegeGrad",
      ],
      optional: true,
    },
    targetingFacebookPageInterestIn: {
      type: "string[]",
      label: "Targeting Facebook Page - Interests",
      description: "Interested in preferences to target the message at.",
      options: [
        "male",
        "female",
      ],
      optional: true,
    },
    targetingFacebookPageRelationshipStatus: {
      type: "string[]",
      label: "Targeting Facebook Page - Relationship Status",
      description: "Relationship status to target the message at.",
      options: [
        "single",
        "relationship",
        "married",
        "engaged",
      ],
      optional: true,
    },
    targetingFacebookPageCountry: {
      type: "string[]",
      label: "Targeting Facebook Page - Country",
      description: "Country to target the message at. 2-digit ISO 3166 format code as provided by Facebook. **Format: [{\"k\": \"Canada\", \"v\": \"CA\"}]** [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage) for more information.",
      optional: true,
    },
    targetingFacebookPageRegions: {
      type: "string[]",
      label: "Targeting Facebook Page - Regions",
      description: "Region to target the message at. Note that regions can only be specified when there is exactly one country targeted. Limit 200. **Format: [{\"k\": \"British Columbia\", \"v\": \"2\"}]** [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage) for more information.",
      optional: true,
    },
    targetingFacebookPageCities: {
      type: "string[]",
      label: "Targeting Facebook Page - Cities",
      description: "City to target the message at. Note that cities can only be specified when there is exactly one country targeted. Limit 250. **Format: [{\"k\": \"Burnaby, BC\", \"v\": \"292466\"}]** [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage) for more information.",
      optional: true,
    },
    targetingFacebookPageZips: {
      type: "string[]",
      label: "Targeting Facebook Page - Zip",
      description: "Zip/Postal Code to target the message at. Limit 50,000. **Format: [{\"k\": \"K1S\", \"v\": \"CA:K1S\"}]** [See the documentation](https://apidocs.hootsuite.com/docs/api/index.html#operation/scheduleMessage) for more information.",
      optional: true,
    },
    targetingLinkedInCompanySize: {
      type: "string[]",
      label: "Targeting LinkedIn Company - Size",
      description: "Company size to target the message at.",
      options: COMPANY_SIZE_OPTIONS,
      optional: true,
    },
    targetingLinkedInCompanyGeography: {
      type: "string[]",
      label: "Targeting LinkedIn Company - Geography",
      description: "Geography to target the message at.",
      options: GEOGRAPHY_OPTIONS,
      optional: true,
    },
    targetingLinkedInCompanyIndustry: {
      type: "string[]",
      label: "Targeting LinkedIn Company - Industry",
      description: "Industry to target the message at.",
      options: INDUSTRY_OPTIONS,
      optional: true,
    },
    targetingLinkedInCompanyJobFunction: {
      type: "string[]",
      label: "Targeting LinkedIn Company - Job Function",
      description: "Job function to target the message at.",
      options: JOB_FUNCTION_OPTIONS,
      optional: true,
    },
    targetingLinkedInCompanySeniority: {
      type: "string[]",
      label: "Targeting LinkedIn Company - Seniority",
      description: "Seniority to target the message at.",
      options: SENIORITY_OPTIONS,
      optional: true,
    },
    targetingLinkedInV2CompanyLocations: {
      type: "string[]",
      label: "Targeting LinkedIn V2 Company - Locations",
      description: "Locations to target the message at, expected format of `urn:li:geo:{CODE}`. [Geo Locations reference](https://learn.microsoft.com/en-us/linkedin/shared/references/v2/standardized-data/locations/geo), [Geo Typeahead Locations reference](https://learn.microsoft.com/en-us/linkedin/shared/references/v2/standardized-data/locations/geo-typeahead?tabs=http)",
      optional: true,
    },
    targetingLinkedInV2CompanyStaffCountRange: {
      type: "string[]",
      label: "Targeting LinkedIn V2 Company - Staff Count Range",
      description: "Staff count to target the message at, expected format of `SIZE_{VALUES}`. [Staff count codes reference](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/company-size-codes)",
      options: STAFF_COUNT_RANGE_OPTIONS,
      optional: true,
    },
    targetingLinkedInV2CompanySeniorities: {
      type: "string[]",
      label: "Targeting LinkedIn V2 Company - Seniorities",
      description: "Seniorities to target the message at, expected format of `urn:li:seniority:{CODE}`. [Seniorities codes reference](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/seniority-codes)",
      optional: true,
    },
    targetingLinkedInV2CompanyIndustries: {
      type: "string[]",
      label: "Targeting LinkedIn V2 Company - Industries",
      description: "Industries to target the message at, expected format of `urn:li:industry:{CODE}`. [Industries codes reference](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/industry-codes-v2)",
      optional: true,
    },
    targetingLinkedInV2CompanyInterfaceLocations: {
      type: "string[]",
      label: "Targeting LinkedIn V2 Company - Interface Locations",
      description: "Languages to target the message at, expected format of `{\"country\":\"COUNTRY\",\"language\":\"language\"}`. [Language codes reference](https://learn.microsoft.com/en-us/linkedin/shared/references/reference-tables/language-codes) Languages can be interpreted as this format: language_COUNTRY, replace in request as necessary.",
      optional: true,
    },
    privacyFacebookVisibility: {
      type: "string",
      label: "Privacy Facebook Visibility",
      description: "Facebook visibility rule.",
      options: [
        "everyone",
        "friends",
        "friendsOfFriends",
      ],
      optional: true,
    },
    privacyLinkedInVisibility: {
      type: "string",
      label: "Privacy LinkedIn Visibility",
      description: "LinkedIn visibility rule.",
      options: [
        "anyone",
        "connectionsOnly",
      ],
      optional: true,
    },
    latitude: {
      type: "string",
      label: "Latitude",
      description: "The latitude in decimal degrees. Must be between -90 to 90.",
      optional: true,
    },
    longitude: {
      type: "string",
      label: "Longitude",
      description: "The longitude in decimal degrees. Must be between -180 to 180.",
      optional: true,
    },
    emailNotification: {
      type: "boolean",
      label: "Email Notification",
      description: "A flag to determine whether email notifications are sent when the message is published.",
      optional: true,
    },
    mediaUrls: {
      type: "string[]",
      label: "Media URLs",
      description: "The ow.ly media to attach to the message",
      optional: true,
    },
    media: {
      type: "string[]",
      label: "Media",
      description: "The media id(s) returned at `Create Media Upload Job` action to attach to the message",
      optional: true,
    },
  },
  async run({ $ }) {
    const facebookPage = {};

    if (this.targetingFacebookPageAgeMin) {
      facebookPage.ageMin = parseInt(this.targetingFacebookPageAgeMin);
    }
    if (this.targetingFacebookPageEducation) {
      facebookPage.education = parseObject(this.targetingFacebookPageEducation);
    }
    if (this.targetingFacebookPageInterestIn) {
      facebookPage.interestIn = parseObject(this.targetingFacebookPageInterestIn);
    }
    if (this.targetingFacebookPageRelationshipStatus) {
      facebookPage.relationshipStatus = parseObject(this.targetingFacebookPageRelationshipStatus);
    }
    if (this.targetingFacebookPageCountry) {
      facebookPage.countries = parseObject(this.targetingFacebookPageCountry);
    }
    if (this.targetingFacebookPageRegions) {
      facebookPage.regions = parseObject(this.targetingFacebookPageRegions);
    }
    if (this.targetingFacebookPageCities) {
      facebookPage.cities = parseObject(this.targetingFacebookPageCities);
    }
    if (this.targetingFacebookPageZips) {
      facebookPage.zips = parseObject(this.targetingFacebookPageZips);
    }
    const linkedInCompany = {};
    if (this.targetingLinkedInCompanySize) {
      linkedInCompany.companySize = parseObject(this.targetingLinkedInCompanySize);
    }
    if (this.targetingLinkedInCompanyGeography) {
      linkedInCompany.geography = parseObject(this.targetingLinkedInCompanyGeography);
    }
    if (this.targetingLinkedInCompanyIndustry) {
      linkedInCompany.industry =
        parseObject(this.targetingLinkedInCompanyIndustry)?.map((item) => String(item));
    }
    if (this.targetingLinkedInCompanyJobFunction) {
      linkedInCompany.jobFunction = parseObject(this.targetingLinkedInCompanyJobFunction);
    }
    if (this.targetingLinkedInCompanySeniority) {
      linkedInCompany.seniority = parseObject(this.targetingLinkedInCompanySeniority);
    }

    const linkedInV2Company = {};
    if (this.targetingLinkedInV2CompanyLocations) {
      linkedInV2Company.locations = parseObject(this.targetingLinkedInV2CompanyLocations);
    }
    if (this.targetingLinkedInV2CompanyStaffCountRange) {
      linkedInV2Company.staffCountRange =
        parseObject(this.targetingLinkedInV2CompanyStaffCountRange);
    }
    if (this.targetingLinkedInV2CompanySeniorities) {
      linkedInV2Company.seniorities = parseObject(this.targetingLinkedInV2CompanySeniorities);
    }
    if (this.targetingLinkedInV2CompanyIndustries) {
      linkedInV2Company.industries = parseObject(this.targetingLinkedInV2CompanyIndustries);
    }
    if (this.targetingLinkedInV2CompanyInterfaceLocations) {
      linkedInV2Company.interfaceLocations =
        parseObject(this.targetingLinkedInV2CompanyInterfaceLocations);
    }

    const response = await this.hootsuite.scheduleMessage({
      $,
      data: {
        text: this.text,
        socialProfileIds: parseObject(this.socialProfileIds),
        scheduledSendTime: this.scheduledSendTime,
        webhookUrls: parseObject(this.webhookUrls),
        tags: parseObject(this.tags),
        targeting: {
          ...(Object.keys(facebookPage).length > 0
            ? {
              facebookPage,
            }
            : {}),
          ...(Object.keys(linkedInCompany).length > 0
            ? {
              linkedInCompany,
            }
            : {}),
          ...(Object.keys(linkedInV2Company).length > 0
            ? {
              linkedInV2Company,
            }
            : {}),
        },
        privacy: (this.privacyFacebookVisibility || this.privacyLinkedInVisibility) && {
          ...(this.privacyFacebookVisibility
            ? {
              facebook: {
                visibility: [
                  this.privacyFacebookVisibility,
                ],
              },
            }
            : {}),
          ...(this.privacyLinkedInVisibility
            ? {
              linkedIn: {
                visibility: [
                  this.privacyLinkedInVisibility,
                ],
              },
            }
            : {}),
        },
        location: {
          latitude: parseFloat(this.latitude),
          longitude: parseFloat(this.longitude),
        },
        emailNotification: this.emailNotification,
        mediaUrls: parseObject(this.mediaUrls)?.map((mediaUrl) => ({
          url: mediaUrl,
        })),
        media: parseObject(this.media)?.map((media) => ({
          id: media,
        })),
      },
    });

    $.export("$summary", `Successfully scheduled message with ID: ${response.data[0].id}`);
    return response;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
HootsuitehootsuiteappThis component uses the Hootsuite app.
Texttextstring

The message text to publish.

Social Profile IDssocialProfileIdsstring[]Select a value from the drop down menu.
Scheduled Send TimescheduledSendTimestring

The time the message is scheduled to be sent in UTC time, ISO-8601 format. Missing or different timezones will not be accepted, to ensure there is no ambiguity about scheduled time. Dates must end with 'Z' to be accepted.

Webhook URLswebhookUrlsstring[]

The webhook URL(s) to call to when the message's state changes.

Tagstagsstring[]

The Hootsuite message tags to apply to the message. To set tags the social profile must belong to an organization. Tags are case sensitive. Limited permission members can only use the existing tags for organization and cannot create new ones. See more about message tags at the Hootsuite Help Center. Not supported by Pinterest.

Targeting Facebook Page - Age MintargetingFacebookPageAgeMinstringSelect a value from the drop down menu:1317181921
Targeting Facebook Page - EducationtargetingFacebookPageEducationstring[]Select a value from the drop down menu:highSchoolcollegecollegeGrad
Targeting Facebook Page - IntereststargetingFacebookPageInterestInstring[]Select a value from the drop down menu:malefemale
Targeting Facebook Page - Relationship StatustargetingFacebookPageRelationshipStatusstring[]Select a value from the drop down menu:singlerelationshipmarriedengaged
Targeting Facebook Page - CountrytargetingFacebookPageCountrystring[]

Country to target the message at. 2-digit ISO 3166 format code as provided by Facebook. Format: [{"k": "Canada", "v": "CA"}] See the documentation for more information.

Targeting Facebook Page - RegionstargetingFacebookPageRegionsstring[]

Region to target the message at. Note that regions can only be specified when there is exactly one country targeted. Limit 200. Format: [{"k": "British Columbia", "v": "2"}] See the documentation for more information.

Targeting Facebook Page - CitiestargetingFacebookPageCitiesstring[]

City to target the message at. Note that cities can only be specified when there is exactly one country targeted. Limit 250. Format: [{"k": "Burnaby, BC", "v": "292466"}] See the documentation for more information.

Targeting Facebook Page - ZiptargetingFacebookPageZipsstring[]

Zip/Postal Code to target the message at. Limit 50,000. Format: [{"k": "K1S", "v": "CA:K1S"}] See the documentation for more information.

Targeting LinkedIn Company - SizetargetingLinkedInCompanySizestring[]Select a value from the drop down menu:{ "label": "self", "value": "self" }{ "label": "1 to 10 employees", "value": "1-10" }{ "label": "11 to 50 employees", "value": "11-50" }{ "label": "51 to 200 employees", "value": "51-200" }{ "label": "201 to 500 employees", "value": "201-500" }{ "label": "501 to 1000 employees", "value": "501-1000" }{ "label": "1001 to 5000 employees", "value": "1001-5000" }{ "label": "5001 to 10000 employees", "value": "5001-10000" }{ "label": "10001+ employees", "value": "10001" }
Targeting LinkedIn Company - GeographytargetingLinkedInCompanyGeographystring[]Select a value from the drop down menu:{ "label": "Africa", "value": "af" }{ "label": "Cameroon", "value": "af.cm" }{ "label": "Algeria", "value": "af.dz" }{ "label": "Egypt", "value": "af.eg" }{ "label": "Ghana", "value": "af.gh" }{ "label": "Kenya", "value": "af.ke" }{ "label": "Morocco", "value": "af.ma" }{ "label": "Nigeria", "value": "af.ng" }{ "label": "Tunisia", "value": "af.tn" }{ "label": "Tanzania", "value": "af.tz" }{ "label": "Uganda", "value": "af.ug" }{ "label": "South Africa", "value": "af.za" }{ "label": "Zimbabwe", "value": "af.zw" }{ "label": "Antarctica", "value": "aq" }{ "label": "Asia", "value": "as" }{ "label": "Bangladesh", "value": "as.bd" }{ "label": "China", "value": "as.cn" }{ "label": "Shanghai City, China", "value": "as.cn.*.8909" }{ "label": "Shenzhen, Guangdong, China", "value": "as.cn.*.8910" }{ "label": "Beijing City, China", "value": "as.cn.*.8911" }{ "label": "Guangzhou, Guangdong, China", "value": "as.cn.*.8919" }{ "label": "Hong Kong", "value": "as.hk" }{ "label": "Indonesia", "value": "as.id" }{ "label": "Greater Jakarta Area, Indonesia", "value": "as.id.*.8594" }{ "label": "India", "value": "as.in" }{ "label": "Andaman & Nicobar Islands", "value": "as.in.an" }{ "label": "Andhra Pradesh", "value": "as.in.ap" }{ "label": "Hyderabad Area, India", "value": "as.in.ap.6508" }{ "label": "Arunachal Pradesh", "value": "as.in.ar" }{ "label": "Assam", "value": "as.in.as" }{ "label": "Bihar", "value": "as.in.br" }{ "label": "Chattisgarh", "value": "as.in.cg" }{ "label": "Chandigarh", "value": "as.in.ch" }{ "label": "Daman & Diu", "value": "as.in.dd" }{ "label": "Delhi", "value": "as.in.dl" }{ "label": "New Delhi Area, India", "value": "as.in.dl.7151" }{ "label": "Dadra & Nagar Haveli", "value": "as.in.dn" }{ "label": "Goa", "value": "as.in.ga" }{ "label": "Vadodara Area, India", "value": "as.in.gj.6552" }{ "label": "Ahmedabad Area, India", "value": "as.in.gj.7065" }{ "label": "Himachal Pradesh", "value": "as.in.hp" }{ "label": "Haryana", "value": "as.in.hr" }{ "label": "Gujarat", "value": "as.in.gj" }{ "label": "Gurgaon, India", "value": "as.in.hr.7391" }{ "label": "Jharkhand", "value": "as.in.jh" }{ "label": "Jammu & Kashmir", "value": "as.in.jk" }{ "label": "Karnataka", "value": "as.in.ka" }{ "label": "Bengaluru Area, India", "value": "as.in.ka.7127" }{ "label": "Kerala", "value": "as.in.kl" }{ "label": "Cochin Area, India", "value": "as.in.kl.6477" }{ "label": "Lakshadweep", "value": "as.in.ld" }{ "label": "Maharashtra", "value": "as.in.mh" }{ "label": "Nagpur Area, India", "value": "as.in.mh.6751" }{ "label": "Mumbai Area, India", "value": "as.in.mh.7150" }{ "label": "Pune Area, India", "value": "as.in.mh.7350" }{ "label": "Meghalaya", "value": "as.in.mn" }{ "label": "Madhya Pradesh", "value": "as.in.mp" }{ "label": "Indore Area, India", "value": "as.in.mp.7382" }{ "label": "Mizoram", "value": "as.in.mz" }{ "label": "Nagaland", "value": "as.in.nl" }{ "label": "Orissa", "value": "as.in.or" }{ "label": "Punjab", "value": "as.in.pb" }{ "label": "Chandigarh Area, India", "value": "as.in.pb.6879" }{ "label": "Pondicherry", "value": "as.in.py" }{ "label": "Rajasthan", "value": "as.in.rj" }{ "label": "Jaipur Area, India", "value": "as.in.rj.7287" }{ "label": "Sikkim", "value": "as.in.sk" }{ "label": "Tamil Nadu", "value": "as.in.tn" }{ "label": "Coimbatore Area, India", "value": "as.in.tn.6472" }{ "label": "Chennai Area, India", "value": "as.in.tn.6891" }{ "label": "Tripura", "value": "as.in.tr" }{ "label": "Uttarakhand", "value": "as.in.ul" }{ "label": "Uttar Pradesh", "value": "as.in.up" }{ "label": "Lucknow Area, India", "value": "as.in.up.7093" }{ "label": "Noida Area, India", "value": "as.in.up.7392" }{ "label": "West Bengal", "value": "as.in.wb" }{ "label": "Kolkata Area, India", "value": "as.in.wb.7003" }{ "label": "Japan", "value": "as.jp" }{ "label": "Korea", "value": "as.kr" }{ "label": "Gangnam-gu, Seoul, Korea", "value": "as.kr.*.7700" }{ "label": "Sri Lanka", "value": "as.lk" }{ "label": "Malaysia", "value": "as.my" }{ "label": "Selangor, Malaysia", "value": "as.my.*.7945" }{ "label": "Kuala Lumpur, Malaysia", "value": "as.my.*.7960" }{ "label": "Nepal", "value": "as.np" }{ "label": "Philippines", "value": "as.ph" }{ "label": "Singapore", "value": "as.sg" }{ "label": "Thailand", "value": "as.th" }{ "label": "Taiwan", "value": "as.tw" }{ "label": "Vietnam", "value": "as.vn" }{ "label": "Europe", "value": "eu" }{ "label": "Austria", "value": "eu.at" }{ "label": "Belgium", "value": "eu.be" }{ "label": "Antwerp Area, Belgium", "value": "eu.be.*.4918" }{ "label": "Brussels Area, Belgium", "value": "eu.be.*.4920" }{ "label": "Bulgaria", "value": "eu.bg" }{ "label": "Switzerland", "value": "eu.ch" }{ "label": "Geneva Area, Switzerland", "value": "eu.ch.*.4930" }{ "label": "Zürich Area, Switzerland", "value": "eu.ch.*.4938" }{ "label": "Czech Republic", "value": "eu.cz" }{ "label": "Germany", "value": "eu.de" }{ "label": "Cologne Area, Germany", "value": "eu.de.*.4953" }{ "label": "Frankfurt Am Main Area, Germany", "value": "eu.de.*.4966" }{ "label": "Munich Area, Germany", "value": "eu.de.*.5000" }{ "label": "Denmark", "value": "eu.dk" }{ "label": "Copenhagen Area, Denmark", "value": "eu.dk.*.5038" }{ "label": "Odense Area, Denmark", "value": "eu.dk.*.5041" }{ "label": "Ålborg Area, Denmark", "value": "eu.dk.*.5044" }{ "label": "Århus Area, Denmark", "value": "eu.dk.*.5045" }{ "label": "Spain", "value": "eu.es" }{ "label": "Barcelona Area, Spain", "value": "eu.es.*.5064" }{ "label": "Madrid Area, Spain", "value": "eu.es.*.5113" }{ "label": "Finland", "value": "eu.fi" }{ "label": "France", "value": "eu.fr" }{ "label": "Lille Area, France", "value": "eu.fr.*.5205" }{ "label": "Lyon Area, France", "value": "eu.fr.*.5210" }{ "label": "Marseille Area, France", "value": "eu.fr.*.5211" }{ "label": "Nice Area, France", "value": "eu.fr.*.5221" }{ "label": "Paris Area, France", "value": "eu.fr.*.5227" }{ "label": "Toulouse Area, France", "value": "eu.fr.*.5249" }{ "label": "United Kingdom", "value": "eu.gb" }{ "label": "Birmingham, United Kingdom", "value": "eu.gb.*.4544" }{ "label": "Brighton, United Kingdom", "value": "eu.gb.*.4550" }{ "label": "Bristol, United Kingdom", "value": "eu.gb.*.4552" }{ "label": "Cambridge, United Kingdom", "value": "eu.gb.*.4555" }{ "label": "Chelmsford, United Kingdom", "value": "eu.gb.*.4558" }{ "label": "Coventry, United Kingdom", "value": "eu.gb.*.4562" }{ "label": "London, United Kingdom", "value": "eu.gb.*.4573" }{ "label": "Edinburgh, United Kingdom", "value": "eu.gb.*.4574" }{ "label": "Edinburgh, United Kingdom", "value": "eu.gb.*.4579" }{ "label": "Glasgow, United Kingdom", "value": "eu.gb.*.4580" }{ "label": "Gloucester, United Kingdom", "value": "eu.gb.*.4582" }{ "label": "Guildford, United Kingdom", "value": "eu.gb.*.4582" }{ "label": "Harrow, United Kingdom", "value": "eu.gb.*.4583" }{ "label": "Hemel Hempstead, United Kingdom", "value": "eu.gb.*.4586" }{ "label": "Hemel Hempstead, United Kingdom", "value": "eu.gb.*.4586" }{ "label": "Kingston upon Thames, United Kingdom", "value": "eu.gb.*.4597" }{ "label": "Kingston upon Thames, United Kingdom", "value": "eu.gb.*.4603" }{ "label": "Leicester, United Kingdom", "value": "eu.gb.*.4606" }{ "label": "Leeds, United Kingdom", "value": "eu.gb.*.4608" }{ "label": "Manchester, United Kingdom", "value": "eu.gb.*.4610" }{ "label": "Milton Keynes, United Kingdom", "value": "eu.gb.*.4612" }{ "label": "Newcastle upon Tyne, United Kingdom", "value": "eu.gb.*.4613" }{ "label": "Nottingham, United Kingdom", "value": "eu.gb.*.4614" }{ "label": "Northampton, United Kingdom", "value": "eu.gb.*.4618" }{ "label": "Portsmouth, United Kingdom", "value": "eu.gb.*.4623" }{ "label": "Reading, United Kingdom", "value": "eu.gb.*.4625" }{ "label": "Redhill, United Kingdom", "value": "eu.gb.*.4626" }{ "label": "Sheffield, United Kingdom", "value": "eu.gb.*.4628" }{ "label": "Slough, United Kingdom", "value": "eu.gb.*.4632" }{ "label": "Southampton, United Kingdom", "value": "eu.gb.*.4635" }{ "label": "Tonbridge, United Kingdom", "value": "eu.gb.*.4644" }{ "label": "Twickenham, United Kingdom", "value": "eu.gb.*.4648" }{ "label": "Greece", "value": "eu.gr" }{ "label": "Croatia", "value": "eu.hr" }{ "label": "Hungary", "value": "eu.hu" }{ "label": "Ireland", "value": "eu.ie" }{ "label": "Italy", "value": "eu.it" }{ "label": "Bologna Area, Italy", "value": "eu.it.*.5587" }{ "label": "Milan Area, Italy", "value": "eu.it.*.5616" }{ "label": "Rome Area, Italy", "value": "eu.it.*.5636" }{ "label": "Turin Area, Italy", "value": "eu.it.*.5652" }{ "label": "Venice Area, Italy", "value": "eu.it.*.5657" }{ "label": "Lithuania", "value": "eu.lt" }{ "label": "Netherlands", "value": "eu.nl" }{ "label": "Almere Stad Area, Netherlands", "value": "eu.nl.*.5663" }{ "label": "Amsterdam Area, Netherlands", "value": "eu.nl.*.5664" }{ "label": "Apeldoorn Area, Netherlands", "value": "eu.nl.*.5665" }{ "label": "Eindhoven Area, Netherlands", "value": "eu.nl.*.5668" }{ "label": "Enschede Area, Netherlands", "value": "eu.nl.*.5669" }{ "label": "Groningen Area, Netherlands", "value": "eu.nl.*.5673" }{ "label": "Nijmegen Area, Netherlands", "value": "eu.nl.*.5681" }{ "label": "The Hague Area, Netherlands", "value": "eu.nl.*.5688" }{ "label": "Utrecht Area, Netherlands", "value": "eu.nl.*.5690" }{ "label": "Breda Area, Netherlands", "value": "eu.nl.*.5906" }{ "label": "Tilburg Area, Netherlands", "value": "eu.nl.*.5907" }{ "label": "Rotterdam Area, Netherlands", "value": "eu.nl.*.5908" }{ "label": "Maastricht Area, Netherlands", "value": "eu.nl.*.7417" }{ "label": "Norway", "value": "eu.no" }{ "label": "Poland", "value": "eu.pl" }{ "label": "Portugal", "value": "eu.pt" }{ "label": "Romania", "value": "eu.ro" }{ "label": "Serbia", "value": "eu.rs" }{ "label": "Russian Federation", "value": "eu.ru" }{ "label": "Sweden", "value": "eu.se" }{ "label": "Slovak Republic", "value": "eu.sk" }{ "label": "Turkey", "value": "eu.tr" }{ "label": "Istanbul, Turkey", "value": "eu.tr.*.7585" }{ "label": "Ukraine", "value": "eu.ua" }{ "label": "Latin America", "value": "la" }{ "label": "Argentina", "value": "la.ar" }{ "label": "Bolivia", "value": "la.bo" }{ "label": "Brazil", "value": "la.br" }{ "label": "Acre", "value": "la.br.ac" }{ "label": "Alagoas", "value": "la.br.al" }{ "label": "Amazonas", "value": "la.br.am" }{ "label": "Amapá", "value": "la.br.ap" }{ "label": "Bahia", "value": "la.br.ba" }{ "label": "Ceará", "value": "la.br.ce" }{ "label": "Distrito Federal", "value": "la.br.df" }{ "label": "Espírito Santo", "value": "la.br.es" }{ "label": "Goiás", "value": "la.br.go" }{ "label": "Maranhão", "value": "la.br.ma" }{ "label": "Minas Gerais", "value": "la.br.mg" }{ "label": "Belo Horizonte Area, Brazil", "value": "la.br.mg.6156" }{ "label": "Mato Grosso do Sul", "value": "la.br.ms" }{ "label": "Mato Grosso", "value": "la.br.mt" }{ "label": "Pará", "value": "la.br.pa" }{ "label": "Paraíba", "value": "la.br.pb" }{ "label": "Pernambuco", "value": "la.br.pe" }{ "label": "Piauí", "value": "la.br.pi" }{ "label": "Paraná", "value": "la.br.pr" }{ "label": "Curitiba Area, Brazil", "value": "la.br.pr.6399" }{ "label": "Rio de Janeiro", "value": "la.br.rj" }{ "label": "Rio de Janeiro Area, Brazil", "value": "la.br.rj.6034" }{ "label": "Rio Grande do Norte", "value": "la.br.rn" }{ "label": "Rondônia", "value": "la.br.ro" }{ "label": "Roraima", "value": "la.br.rr" }{ "label": "Rio Grande do Sul", "value": "la.br.rs" }{ "label": "Porto Alegre Area, Brazil", "value": "la.br.rs.6467" }{ "label": "Santa Catarina", "value": "la.br.sc" }{ "label": "Sergipe", "value": "la.br.se" }{ "label": "São Paulo", "value": "la.br.sp" }{ "label": "Campinas Area, Brazil", "value": "la.br.sp.6104" }{ "label": "São Paulo Area, Brazil", "value": "la.br.sp.6368" }{ "label": "Tocantins", "value": "la.br.to" }{ "label": "Chile", "value": "la.cl" }{ "label": "Colombia", "value": "la.co" }{ "label": "Costa Rica", "value": "la.cr" }{ "label": "Dominican Republic", "value": "la.do" }{ "label": "Ecuador", "value": "la.ec" }{ "label": "Guatemala", "value": "la.gt" }{ "label": "Mexico", "value": "la.mx" }{ "label": "Mexico City Area, Mexico", "value": "la.mx.*.5921" }{ "label": "Naucalpan de Juárez Area, Mexico", "value": "la.mx.*.5955" }{ "label": "Panama", "value": "la.pa" }{ "label": "Peru", "value": "la.pe" }{ "label": "Puerto Rico", "value": "la.pr" }{ "label": "Trinidad and Tobago", "value": "la.tt" }{ "label": "Uruguay", "value": "la.uy" }{ "label": "Venezuela", "value": "la.ve" }{ "label": "Middle East", "value": "me" }{ "label": "United Arab Emirates", "value": "me.ae" }{ "label": "Bahrain", "value": "me.bh" }{ "label": "Israel", "value": "me.il" }{ "label": "Jordan", "value": "me.jo" }{ "label": "Kuwait", "value": "me.kw" }{ "label": "Pakistan", "value": "me.pk" }{ "label": "Qatar", "value": "me.qa" }{ "label": "Saudi Arabia", "value": "me.sa" }{ "label": "North America", "value": "na" }{ "label": "Canada", "value": "na.ca" }{ "label": "Alberta", "value": "na.ca.ab" }{ "label": "Edmonton, Canada Area", "value": "na.ca.ab.4872" }{ "label": "Calgary, Canada Area", "value": "na.ca.ab.4882" }{ "label": "British Columbia", "value": "na.ca.bc" }{ "label": "British Columbia, Canada", "value": "na.ca.bc.4873" }{ "label": "Vancouver, Canada Area", "value": "na.ca.bc.4880" }{ "label": "Manitoba", "value": "na.ca.mb" }{ "label": "New Brunswick", "value": "na.ca.nb" }{ "label": "Newfoundland And Labrador", "value": "na.ca.nl" }{ "label": "Nova Scotia", "value": "na.ca.ns" }{ "label": "Halifax, Canada Area", "value": "na.ca.ns.4874" }{ "label": "Northwest Territories", "value": "na.ca.nt" }{ "label": "Nunavut", "value": "na.ca.nu" }{ "label": "Ontario", "value": "na.ca.on" }{ "label": "Ontario, Canada", "value": "na.ca.on.4864" }{ "label": "Kitchener, Canada Area", "value": "na.ca.on.4865" }{ "label": "London, Canada Area", "value": "na.ca.on.4869" }{ "label": "Toronto, Canada Area", "value": "na.ca.on.4876" }{ "label": "Ottawa, Canada Area", "value": "na.ca.on.4884" }{ "label": "Prince Edward Island", "value": "na.ca.pe" }{ "label": "Quebec", "value": "na.ca.qc" }{ "label": "Montreal, Canada Area", "value": "na.ca.qc.4863" }{ "label": "Winnipeg, Canada Area", "value": "na.ca.qc.4866" }{ "label": "Quebec, Canada", "value": "na.ca.qc.4875" }{ "label": "Saskatchewan", "value": "na.ca.sk" }{ "label": "Yukon", "value": "na.ca.yt" }{ "label": "United States", "value": "na.us" }{ "label": "Alaska", "value": "na.us.ak" }{ "label": "Anchorage, Alaska Area", "value": "na.us.ak.38" }{ "label": "Alabama", "value": "na.us.al" }{ "label": "Birmingham, Alabama Area", "value": "na.us.al.100" }{ "label": "Huntsville, Alabama Area", "value": "na.us.al.344" }{ "label": "Mobile, Alabama Area", "value": "na.us.al.516" }{ "label": "Arkansas", "value": "na.us.ar" }{ "label": "Fayetteville, Arkansas Area", "value": "na.us.ar.258" }{ "label": "Little Rock, Arkansas Area", "value": "na.us.ar.440" }{ "label": "Arizona", "value": "na.us.az" }{ "label": "Phoenix, Arizona Area", "value": "na.us.az.620" }{ "label": "Tucson, Arizona Area", "value": "na.us.az.852" }{ "label": "California", "value": "na.us.ca" }{ "label": "Fresno, California Area", "value": "na.us.ca.284" }{ "label": "Greater Los Angeles Area", "value": "na.us.ca.49" }{ "label": "Orange County, California Area", "value": "na.us.ca.51" }{ "label": "Salinas, California Area", "value": "na.us.ca.712" }{ "label": "Greater San Diego Area", "value": "na.us.ca.732" }{ "label": "Santa Barbara, California Area", "value": "na.us.ca.748" }{ "label": "Stockton, California Area", "value": "na.us.ca.812" }{ "label": "Sacramento, California Area", "value": "na.us.ca.82" }{ "label": "San Francisco Bay Area", "value": "na.us.ca.84" }{ "label": "Colorado", "value": "na.us.co" }{ "label": "Colorado Springs, Colorado Area", "value": "na.us.co.172" }{ "label": "Fort Collins, Colorado Area", "value": "na.us.co.267" }{ "label": "Greater Denver Area", "value": "na.us.co.34" }{ "label": "Connecticut", "value": "na.us.ct" }{ "label": "Hartford, Connecticut Area", "value": "na.us.ct.327" }{ "label": "New London/Norwich, Connecticut Area", "value": "na.us.ct.552" }{ "label": "District Of Columbia", "value": "na.us.dc" }{ "label": "Washington D.C. Metro Area", "value": "na.us.dc.97" }{ "label": "Delaware", "value": "na.us.de" }{ "label": "Florida", "value": "na.us.fl" }{ "label": "Daytona Beach, Florida Area", "value": "na.us.fl.202" }{ "label": "Fort Myers, Florida Area", "value": "na.us.fl.270" }{ "label": "Fort Pierce, Florida Area", "value": "na.us.fl.271" }{ "label": "Gainesville, Florida Area", "value": "na.us.fl.290" }{ "label": "Jacksonville, Florida Area", "value": "na.us.fl.359" }{ "label": "Lakeland, Florida Area", "value": "na.us.fl.398" }{ "label": "Melbourne, Florida Area", "value": "na.us.fl.490" }{ "label": "Miami/Fort Lauderdale Area", "value": "na.us.fl.56" }{ "label": "Orlando, Florida Area", "value": "na.us.fl.596" }{ "label": "Sarasota, Florida Area", "value": "na.us.fl.751" }{ "label": "Tallahassee, Florida Area", "value": "na.us.fl.824" }{ "label": "Tampa/St. Petersburg, Florida Area", "value": "na.us.fl.828" }{ "label": "West Palm Beach, Florida Area", "value": "na.us.fl.896" }{ "label": "Georgia", "value": "na.us.ga" }{ "label": "Greater Atlanta Area", "value": "na.us.ga.52" }{ "label": "Augusta, Georgia Area", "value": "na.us.ga.60" }{ "label": "Savannah, Georgia Area", "value": "na.us.ga.752" }{ "label": "Hawaii", "value": "na.us.hi" }{ "label": "Hawaiian Islands", "value": "na.us.hi.332" }{ "label": "Iowa", "value": "na.us.ia" }{ "label": "Davenport, Iowa Area", "value": "na.us.ia.196" }{ "label": "Des Moines, Iowa Area", "value": "na.us.ia.212" }{ "label": "Idaho", "value": "na.us.id" }{ "label": "Boise, Idaho Area", "value": "na.us.id.108" }{ "label": "Illinois", "value": "na.us.il" }{ "label": "Greater Chicago Area", "value": "na.us.il.14" }{ "label": "Urbana-Champaign, Illinois Area", "value": "na.us.il.140" }{ "label": "Peoria, Illinois Area", "value": "na.us.il.612" }{ "label": "Rockford, Illinois Area", "value": "na.us.il.688" }{ "label": "Indiana", "value": "na.us.in" }{ "label": "Evansville, Indiana Area", "value": "na.us.in.244" }{ "label": "Fort Wayne, Indiana Area", "value": "na.us.in.276" }{ "label": "Indianapolis, Indiana Area", "value": "na.us.in.348" }{ "label": "Kansas", "value": "na.us.ks" }{ "label": "Wichita, Kansas Area", "value": "na.us.ks.904" }{ "label": "Kentucky", "value": "na.us.ky" }{ "label": "Lexington, Kentucky Area", "value": "na.us.ky.428" }{ "label": "Louisville, Kentucky Area", "value": "na.us.ky.452" }{ "label": "Louisiana", "value": "na.us.la" }{ "label": "Greater New Orleans Area", "value": "na.us.la.556" }{ "label": "Baton Rouge, Louisiana Area", "value": "na.us.la.76" }{ "label": "Massachusetts", "value": "na.us.ma" }{ "label": "Greater Boston Area", "value": "na.us.ma.7" }{ "label": "Springfield, Massachusetts Area", "value": "na.us.ma.800" }{ "label": "Maryland", "value": "na.us.md" }{ "label": "Baltimore, Maryland Area", "value": "na.us.md.7416" }{ "label": "Maine", "value": "na.us.me" }{ "label": "Portland, Maine Area", "value": "na.us.me.640" }{ "label": "Michigan", "value": "na.us.mi" }{ "label": "Greater Grand Rapids, Michigan Area", "value": "na.us.mi.300" }{ "label": "Greater Detroit Area", "value": "na.us.mi.35" }{ "label": "Kalamazoo, Michigan Area", "value": "na.us.mi.372" }{ "label": "Lansing, Michigan Area", "value": "na.us.mi.404" }{ "label": "Saginaw, Michigan Area", "value": "na.us.mi.696" }{ "label": "Minnesota", "value": "na.us.mn" }{ "label": "Greater Minneapolis-St. Paul Area", "value": "na.us.mn.512" }{ "label": "Missouri", "value": "na.us.mo" }{ "label": "Columbia, Missouri Area", "value": "na.us.mo.174" }{ "label": "Kansas City, Missouri Area", "value": "na.us.mo.376" }{ "label": "Greater St. Louis Area", "value": "na.us.mo.704" }{ "label": "Springfield, Missouri Area", "value": "na.us.mo.792" }{ "label": "Mississippi", "value": "na.us.ms" }{ "label": "Jackson, Mississippi Area", "value": "na.us.ms.356" }{ "label": "Montana", "value": "na.us.mt" }{ "label": "North Carolina", "value": "na.us.nc" }{ "label": "Charlotte, North Carolina Area", "value": "na.us.nc.152" }{ "label": "Greensboro/Winston-Salem, North Carolina Area", "value": "na.us.nc.312" }{ "label": "Asheville, North Carolina Area", "value": "na.us.nc.48" }{ "label": "Raleigh-Durham, North Carolina Area", "value": "na.us.nc.664" }{ "label": "Wilmington, North Carolina Area", "value": "na.us.nc.920" }{ "label": "North Dakota", "value": "na.us.nd" }{ "label": "Lincoln, Nebraska Area", "value": "na.us.ne.436" }{ "label": "Greater Omaha Area", "value": "na.us.ne.592" }{ "label": "New Hampshire", "value": "na.us.nh" }{ "label": "New Jersey", "value": "na.us.nj" }{ "label": "New Mexico", "value": "na.us.nm" }{ "label": "Albuquerque, New Mexico Area", "value": "na.us.nm.20" }{ "label": "Nevada", "value": "na.us.nv" }{ "label": "Las Vegas, Nevada Area", "value": "na.us.nv.412" }{ "label": "Reno, Nevada Area", "value": "na.us.nv.672" }{ "label": "New York", "value": "na.us.ny" }{ "label": "Buffalo/Niagara, New York Area", "value": "na.us.ny.128" }{ "label": "Albany, New York Area", "value": "na.us.ny.16" }{ "label": "Rochester, New York Area", "value": "na.us.ny.684" }{ "label": "Greater New York City Area", "value": "na.us.ny.70" }{ "label": "Syracuse, New York Area", "value": "na.us.ny.816" }{ "label": "Ithaca, New York Area", "value": "na.us.ny.96" }{ "label": "Ohio", "value": "na.us.oh" }{ "label": "Columbus, Ohio Area", "value": "na.us.oh.184" }{ "label": "Dayton, Ohio Area", "value": "na.us.oh.200" }{ "label": "Dayton, Ohio Area", "value": "na.us.oh.200" }{ "label": "Cincinnati Area", "value": "na.us.oh.21" }{ "label": "Cleveland/Akron, Ohio Area", "value": "na.us.oh.28" }{ "label": "Toledo, Ohio Area", "value": "na.us.oh.840" }{ "label": "Oklahoma", "value": "na.us.ok" }{ "label": "Oklahoma City, Oklahoma Area", "value": "na.us.ok.588" }{ "label": "Tulsa, Oklahoma Area", "value": "na.us.ok.856" }{ "label": "Oregon", "value": "na.us.or" }{ "label": "Eugene, Oregon Area", "value": "na.us.or.240" }{ "label": "Portland, Oregon Area", "value": "na.us.or.79" }{ "label": "Pennsylvania", "value": "na.us.pa" }{ "label": "Allentown, Pennsylvania Area", "value": "na.us.pa.24" }{ "label": "Harrisburg, Pennsylvania Area", "value": "na.us.pa.324" }{ "label": "Lancaster, Pennsylvania Area", "value": "na.us.pa.400" }{ "label": "Greater Pittsburgh Area", "value": "na.us.pa.628" }{ "label": "Scranton, Pennsylvania Area", "value": "na.us.pa.756" }{ "label": "Greater Philadelphia Area", "value": "na.us.pa.77" }{ "label": "Rhode Island", "value": "na.us.ri" }{ "label": "Providence, Rhode Island Area", "value": "na.us.ri.648" }{ "label": "South Carolina", "value": "na.us.sc" }{ "label": "Charleston, South Carolina Area", "value": "na.us.sc.144" }{ "label": "Columbia, South Carolina Area", "value": "na.us.sc.176" }{ "label": "Greenville, South Carolina Area", "value": "na.us.sc.316" }{ "label": "South Dakota", "value": "na.us.sd" }{ "label": "Sioux Falls, South Dakota Area", "value": "na.us.sd.776" }{ "label": "Tennessee", "value": "na.us.tn" }{ "label": "Chattanooga, Tennessee Area", "value": "na.us.tn.156" }{ "label": "Johnson City, Tennessee Area", "value": "na.us.tn.366" }{ "label": "Knoxville, Tennessee Area", "value": "na.us.tn.384" }{ "label": "Greater Memphis Area", "value": "na.us.tn.492" }{ "label": "Greater Nashville Area", "value": "na.us.tn.536" }{ "label": "Texas", "value": "na.us.tx" }{ "label": "El Paso, Texas Area", "value": "na.us.tx.232" }{ "label": "Dallas/Fort Worth Area", "value": "na.us.tx.31" }{ "label": "Houston, Texas Area", "value": "na.us.tx.42" }{ "label": "Austin, Texas Area", "value": "na.us.tx.64" }{ "label": "San Antonio, Texas Area", "value": "na.us.tx.724" }{ "label": "Utah", "value": "na.us.ut" }{ "label": "Provo, Utah Area", "value": "na.us.ut.652" }{ "label": "Greater Salt Lake City Area", "value": "na.us.ut.716" }{ "label": "Virginia", "value": "na.us.va" }{ "label": "Charlottesville, Virginia Area", "value": "na.us.va.154" }{ "label": "Norfolk, Virginia Area", "value": "na.us.va.572" }{ "label": "Richmond, Virginia Area", "value": "na.us.va.676" }{ "label": "Roanoke, Virginia Area", "value": "na.us.va.680" }{ "label": "Vermont", "value": "na.us.vt" }{ "label": "Burlington, Vermont Area", "value": "na.us.vt.130" }{ "label": "Washington", "value": "na.us.wa" }{ "label": "Spokane, Washington Area", "value": "na.us.wa.784" }{ "label": "Greater Seattle Area", "value": "na.us.wa.91" }{ "label": "Wisconsin", "value": "na.us.wi" }{ "label": "Green Bay, Wisconsin Area", "value": "na.us.wi.308" }{ "label": "Oshkosh, Wisconsin Area", "value": "na.us.wi.46" }{ "label": "Madison, Wisconsin Area", "value": "na.us.wi.472" }{ "label": "Greater Milwaukee Area", "value": "na.us.wi.63" }{ "label": "West Virginia", "value": "na.us.wv" }{ "label": "Wyoming", "value": "na.us.wy" }{ "label": "Oceania", "value": "oc" }{ "label": "Australia", "value": "oc.au" }{ "label": "Adelaide Area, Australia", "value": "oc.au.*.4886" }{ "label": "Canberra Area, Australia", "value": "oc.au.*.4893" }{ "label": "Melbourne Area, Australia", "value": "oc.au.*.4900" }{ "label": "Perth Area, Australia", "value": "oc.au.*.4905" }{ "label": "Brisbane Area, Australia", "value": "oc.au.*.4909" }{ "label": "Sydney Area, Australia", "value": "oc.au.*.4910" }{ "label": "New Zealand", "value": "oc.nz" }
Targeting LinkedIn Company - IndustrytargetingLinkedInCompanyIndustrystring[]Select a value from the drop down menu:{ "label": "Agriculture - Farming", "value": "63" }{ "label": "Agriculture - Ranching", "value": "64" }{ "label": "Agriculture - Dairy", "value": "65" }{ "label": "Agriculture - Fishery", "value": "66" }{ "label": "Arts - Motion Pictures and Film", "value": "35" }{ "label": "Arts - Museums and Institutions", "value": "37" }{ "label": "Arts - Fine Art", "value": "38" }{ "label": "Arts - Performing Arts", "value": "39" }{ "label": "Arts - Design", "value": "99" }{ "label": "Arts - Arts and Crafts", "value": "111" }{ "label": "Arts - Music", "value": "115" }{ "label": "Arts - Photography", "value": "136" }{ "label": "Arts - Graphic Design", "value": "140" }{ "label": "Construction - Construction", "value": "48" }{ "label": "Construction - Building Materials", "value": "49" }{ "label": "Construction - Architecture & Planning", "value": "50" }{ "label": "Construction - Civil Engineering", "value": "51" }{ "label": "Consumer Goods - Cosmetics", "value": "18" }{ "label": "Consumer Goods - Apparel & Fashion", "value": "19" }{ "label": "Consumer Goods - Sporting Goods", "value": "20" }{ "label": "Consumer Goods - Tobacco", "value": "21" }{ "label": "Consumer Goods - Supermarkets", "value": "22" }{ "label": "Consumer Goods - Food Production", "value": "23" }{ "label": "Consumer Goods - Consumer Electronics", "value": "24" }{ "label": "Consumer Goods - Consumer Goods", "value": "25" }{ "label": "Consumer Goods - Furniture", "value": "26" }{ "label": "Consumer Goods - Retail", "value": "27" }{ "label": "Consumer Goods - Wholesale", "value": "133" }{ "label": "Consumer Goods - Import and Export", "value": "134" }{ "label": "Consumer Goods - Wine and Spirits", "value": "142" }{ "label": "Consumer Goods - Luxury Goods & Jewelry", "value": "143" }{ "label": "Corporate - Management Consulting", "value": "11" }{ "label": "Corporate - Marketing and Advertising", "value": "80" }{ "label": "Corporate - Market Research", "value": "97" }{ "label": "Corporate - Public Relations and Communications", "value": "98" }{ "label": "Corporate - Staffing and Recruiting", "value": "104" }{ "label": "Corporate - Professional Training & Coaching", "value": "105" }{ "label": "Corporate - Security and Investigations", "value": "121" }{ "label": "Corporate - Facilities Services", "value": "122" }{ "label": "Corporate - Outsourcing/Offshoring", "value": "123" }{ "label": "Corporate - Human Resources", "value": "137" }{ "label": "Corporate - Business Supplies and Equipment", "value": "138" }{ "label": "Educational - Primary/Secondary Education", "value": "67" }{ "label": "Educational - Higher Education", "value": "68" }{ "label": "Educational - Education Management", "value": "69" }{ "label": "Educational - Research", "value": "70" }{ "label": "Educational - E-Learning", "value": "132" }{ "label": "Finance - Banking", "value": "41" }{ "label": "Finance - Insurance", "value": "42" }{ "label": "Finance - Financial Services", "value": "43" }{ "label": "Finance - Real Estate", "value": "44" }{ "label": "Finance - Investment Banking", "value": "45" }{ "label": "Finance - Investment Management", "value": "46" }{ "label": "Finance - Accounting", "value": "47" }{ "label": "Finance - Venture Capital & Private Equity", "value": "106" }{ "label": "Finance - Commercial Real Estate", "value": "128" }{ "label": "Finance - Capital Markets", "value": "129" }{ "label": "Government - Military", "value": "71" }{ "label": "Government - Legislative Office", "value": "72" }{ "label": "Government - Judiciary", "value": "73" }{ "label": "Government - International Affairs", "value": "74" }{ "label": "Government - Government Administration", "value": "75" }{ "label": "Government - Executive Office", "value": "76" }{ "label": "Government - Law Enforcement", "value": "77" }{ "label": "Government - Public Safety", "value": "78" }{ "label": "Government - Public Policy", "value": "79" }{ "label": "Government - Political Organization", "value": "107" }{ "label": "Government - Government Relations", "value": "148" }{ "label": "High Tech - Defense & Space", "value": "1" }{ "label": "High Tech - Computer Hardware", "value": "3" }{ "label": "High Tech - Computer Software", "value": "4" }{ "label": "High Tech - Computer Networking", "value": "5" }{ "label": "High Tech - Internet", "value": "6" }{ "label": "High Tech - Semiconductors", "value": "7" }{ "label": "High Tech - Telecommunications", "value": "8" }{ "label": "High Tech - Information Technology and Services", "value": "96" }{ "label": "High Tech - Nanotechnology", "value": "114" }{ "label": "High Tech - Computer & Network Security", "value": "118" }{ "label": "High Tech - Wireless", "value": "119" }{ "label": "Legal - Law Practice", "value": "9" }{ "label": "Legal - Legal Services", "value": "10" }{ "label": "Legal - Alternative Dispute Resolution", "value": "120" }{ "label": "Manufacturing - Aviation & Aerospace", "value": "52" }{ "label": "Manufacturing - Automotive", "value": "53" }{ "label": "Manufacturing - Chemicals", "value": "54" }{ "label": "Manufacturing - Machinery", "value": "55" }{ "label": "Manufacturing - Mining & Metals", "value": "56" }{ "label": "Manufacturing - Oil & Energy", "value": "57" }{ "label": "Manufacturing - Shipbuilding", "value": "58" }{ "label": "Manufacturing - Utilities", "value": "59" }{ "label": "Manufacturing - Textiles", "value": "60" }{ "label": "Manufacturing - Paper & Forest Products", "value": "61" }{ "label": "Manufacturing - Railroad Manufacture", "value": "62" }{ "label": "Manufacturing - Electrical/Electronic Manufacturing", "value": "112" }{ "label": "Manufacturing - Plastics", "value": "117" }{ "label": "Manufacturing - Mechanical or Industrial Engineering", "value": "135" }{ "label": "Manufacturing - Renewables & Environment", "value": "144" }{ "label": "Manufacturing - Glass, Ceramics & Concrete", "value": "145" }{ "label": "Manufacturing - Packaging and Containers", "value": "146" }{ "label": "Manufacturing - Industrial Automation", "value": "147" }{ "label": "Media - Broadcast Media", "value": "36" }{ "label": "Media - Newspapers", "value": "81" }{ "label": "Media - Publishing", "value": "82" }{ "label": "Media - Printing", "value": "83" }{ "label": "Media - Writing and Editing", "value": "103" }{ "label": "Media - Online Media", "value": "113" }{ "label": "Media - Media Production", "value": "126" }{ "label": "Media - Animation", "value": "127" }{ "label": "Medical - Biotechnology", "value": "12" }{ "label": "Medical - Medical Practice", "value": "13" }{ "label": "Medical - Hospital & Health Care", "value": "14" }{ "label": "Medical - Pharmaceuticals", "value": "15" }{ "label": "Medical - Veterinary", "value": "16" }{ "label": "Medical - Medical Devices", "value": "17" }{ "label": "Medical - Health, Wellness and Fitness", "value": "124" }{ "label": "Medical - Alternative Medicine", "value": "125" }{ "label": "Medical - Mental Health Care", "value": "139" }{ "label": "Non-profit - Consumer Services", "value": "91" }{ "label": "Non-profit - Non-profit Organization Management", "value": "100" }{ "label": "Non-profit - Fund-Raising", "value": "101" }{ "label": "Non-profit - Program Development", "value": "102" }{ "label": "Non-profit - Think Tanks", "value": "130" }{ "label": "Non-profit - Philanthropy", "value": "131" }{ "label": "Non-profit - International Trade and Development", "value": "141" }{ "label": "Recreational - Entertainment", "value": "28" }{ "label": "Recreational - Gambling & Casinos", "value": "29" }{ "label": "Recreational - Leisure, Travel & Tourism", "value": "30" }{ "label": "Recreational - Hospitality", "value": "31" }{ "label": "Recreational - Restaurants", "value": "32" }{ "label": "Recreational - Sports", "value": "33" }{ "label": "Recreational - Food & Beverages", "value": "34" }{ "label": "Recreational - Recreational Facilities and Services", "value": "40" }{ "label": "Recreational - Computer Games", "value": "109" }{ "label": "Recreational - Events Services", "value": "110" }{ "label": "Service - Information Services", "value": "84" }{ "label": "Service - Libraries", "value": "85" }{ "label": "Service - Environmental Services", "value": "86" }{ "label": "Service - Individual & Family Services", "value": "88" }{ "label": "Service - Religious Institutions", "value": "89" }{ "label": "Service - Civic & Social Organization", "value": "90" }{ "label": "Service - Translation and Localization", "value": "108" }{ "label": "Transportation - Package/Freight Delivery", "value": "87" }{ "label": "Transportation - Transportation/Trucking/Railroad", "value": "92" }{ "label": "Transportation - Warehousing", "value": "93" }{ "label": "Transportation - Airlines/Aviation", "value": "94" }{ "label": "Transportation - Maritime", "value": "95" }{ "label": "Transportation - Logistics and Supply Chain", "value": "116" }
Targeting LinkedIn Company - Job FunctiontargetingLinkedInCompanyJobFunctionstring[]Select a value from the drop down menu:{ "label": "Research", "value": "acad" }{ "label": "Accounting", "value": "acct" }{ "label": "Administrative", "value": "admn" }{ "label": "Business Development", "value": "bd" }{ "label": "Purchasing", "value": "buy" }{ "label": "Consulting", "value": "cnsl" }{ "label": "Arts and Design", "value": "cre" }{ "label": "Community and Social Services", "value": "css" }{ "label": "Education", "value": "edu" }{ "label": "Engineering", "value": "eng" }{ "label": "Entrepreneurship", "value": "ent" }{ "label": "Finance", "value": "finc" }{ "label": "Human Resources", "value": "hr" }{ "label": "Information Technology", "value": "it" }{ "label": "Legal", "value": "lgl" }{ "label": "Healthcare Services", "value": "med" }{ "label": "Marketing", "value": "mktg" }{ "label": "Military and Protective Services", "value": "mps" }{ "label": "Operations", "value": "ops" }{ "label": "Program and Project Management", "value": "ppm" }{ "label": "Media and Communication", "value": "pr" }{ "label": "Product Management", "value": "prod" }{ "label": "Quality Assurance", "value": "qa" }{ "label": "Real Estate", "value": "re" }{ "label": "Sales", "value": "sale" }{ "label": "Support", "value": "supp" }
Targeting LinkedIn Company - SenioritytargetingLinkedInCompanySenioritystring[]Select a value from the drop down menu:{ "label": "Chief X Officer", "value": "c" }{ "label": "Director", "value": "d" }{ "label": "Entry", "value": "en" }{ "label": "Senior", "value": "ic" }{ "label": "Manager", "value": "m" }{ "label": "Owner", "value": "o" }{ "label": "Partner", "value": "p" }{ "label": "Training", "value": "tr" }{ "label": "Unpaid", "value": "up" }{ "label": "Vice President", "value": "vp" }
Targeting LinkedIn V2 Company - LocationstargetingLinkedInV2CompanyLocationsstring[]

Locations to target the message at, expected format of urn:li:geo:{CODE}. Geo Locations reference, Geo Typeahead Locations reference

Targeting LinkedIn V2 Company - Staff Count RangetargetingLinkedInV2CompanyStaffCountRangestring[]Select a value from the drop down menu:SIZE_1SIZE_2_TO_10SIZE_11_TO_50SIZE_51_TO_200SIZE_201_TO_500SIZE_501_TO_1000SIZE_1001_TO_5000SIZE_5001_TO_10000SIZE_10001_OR_MORE
Targeting LinkedIn V2 Company - SenioritiestargetingLinkedInV2CompanySenioritiesstring[]

Seniorities to target the message at, expected format of urn:li:seniority:{CODE}. Seniorities codes reference

Targeting LinkedIn V2 Company - IndustriestargetingLinkedInV2CompanyIndustriesstring[]

Industries to target the message at, expected format of urn:li:industry:{CODE}. Industries codes reference

Targeting LinkedIn V2 Company - Interface LocationstargetingLinkedInV2CompanyInterfaceLocationsstring[]

Languages to target the message at, expected format of {"country":"COUNTRY","language":"language"}. Language codes reference Languages can be interpreted as this format: language_COUNTRY, replace in request as necessary.

Privacy Facebook VisibilityprivacyFacebookVisibilitystringSelect a value from the drop down menu:everyonefriendsfriendsOfFriends
Privacy LinkedIn VisibilityprivacyLinkedInVisibilitystringSelect a value from the drop down menu:anyoneconnectionsOnly
Latitudelatitudestring

The latitude in decimal degrees. Must be between -90 to 90.

Longitudelongitudestring

The longitude in decimal degrees. Must be between -180 to 180.

Email NotificationemailNotificationboolean

A flag to determine whether email notifications are sent when the message is published.

Media URLsmediaUrlsstring[]

The ow.ly media to attach to the message

Mediamediastring[]

The media id(s) returned at Create Media Upload Job action to attach to the message

Action Authentication

Hootsuite uses OAuth authentication. When you connect your Hootsuite account, Pipedream will open a popup window where you can sign into Hootsuite and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Hootsuite API.

Pipedream requests the following authorization scopes when you connect your account:

offline

About Hootsuite

Social media management platform.

More Ways to Connect Hootsuite + Notion

Schedule Message with Hootsuite API on New Comment Created from Notion API
Notion + Hootsuite
 
Try it
Schedule Message with Hootsuite API on New Database Created from Notion API
Notion + Hootsuite
 
Try it
Schedule Message with Hootsuite API on New Page in Database from Notion API
Notion + Hootsuite
 
Try it
Schedule Message with Hootsuite API on Page or Subpage Updated from Notion API
Notion + Hootsuite
 
Try it
Schedule Message with Hootsuite API on Page Updated from Notion API
Notion + Hootsuite
 
Try it
New Comment Created from the Notion API

Emit new event when a new comment is created in a page or block. See the documentation

 
Try it
New Database Created from the Notion API

Emit new event when a database is created. See the documentation

 
Try it
New or Updated Page in Database (By Property) from the Notion API

Emit new event when a page is created or updated in the selected database. See the documentation

 
Try it
New or Updated Page in Database (By Timestamp) from the Notion API

Emit new event when a page is created or updated in the selected database. See the documentation

 
Try it
New Page in Database from the Notion API

Emit new event when a page is created in the selected database. See the documentation

 
Try it
Append Block to Parent with the Notion API

Append new and/or existing blocks to the specified parent. See the documentation

 
Try it
Create Comment with the Notion API

Create a comment in a page or existing discussion thread. See the documentation

 
Try it
Create Page with the Notion API

Create a page from a parent page. See the documentation

 
Try it
Create Page from Database with the Notion API

Create a page from a database. See the documentation

 
Try it
Duplicate Page with the Notion API

Create a new page copied from an existing page block. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
2,800+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Premium
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.