HigherGov Docs
  • The HigherGov Docs
  • HigherGov Basics
    • Search Basics
    • Saved Searches and Alerts
    • Favoriting, Tracking, and Passing
    • Adding Users to Your Account
    • Daily Opportunity Emails
  • Find Opportunities
    • Federal Contracts
    • Federal Grants
    • State and Local Contracts
    • DLA Opportunities
    • Forecasted Opportunities and Expiring Awards
    • Federal Small Business and Socioeconomic Contracts
    • Federal Subcontracts and Subgrants
  • Business Development
    • Find And Analyze Competing Bidders
    • Find Teaming Partners
    • Benchmarking Labor Rates
    • Find Federal Incumbents
    • Find Government Buyers
  • Pursuit Management
    • Create a Pipeline
    • Add Pursuits to Pipeline
    • Review Pipeline and Performance
  • Market Intelligence
    • Research Federal Contractors and Grant Recipients
    • Find and Analyze Federal Contracts
    • Find and Analyze Federal Grants
    • Market Analysis Tool
    • Analyze Contract Vehicles
  • Capital Markets
    • Analyze M&A Transactions and Trends
    • Find M&A Targets and Buyers
  • Reference
    • Federal Contract Hierarchies
    • Federal Contract Protests
    • Analyze and Select NAICS and PSC Codes
  • MARKETING
    • Customize Awardee Profile
    • Marketing Audit Tool
    • Marketing Booster
  • Import and Export
    • API
    • Task Order Integration
    • Zapier Integration
  • More
    • FOIA Service
    • FAQ
Powered by GitBook
On this page
  • Prerequisites
  • Creating a Zapier Pipeline in HigherGov
  • Configuring Zapier
  • Adding Pursuits to Your Zapier Pipeline
  • Zapier API Endpoints
  • Base URL
  • Authentication
  • Subscribe
  • Unsubscribe
  • Perform List
  1. Import and Export

Zapier Integration

Quickly and easily add HigherGov opportunities as pursuits in your CRM using Zapier

PreviousTask Order IntegrationNextFOIA Service

Last updated 4 months ago

Zapier integration requires a HigherGov Standard or Leader plan subscription. If you would like to upgrade or learn more, please .

Prerequisites

Zapier Account: If you do not already have a Zapier account, you can create one . Many users may be able to connect HigherGov to their CRM using a free Zapier account. If you expect to send more than 100 opportunities per month to your CRM (or are using Zapier for other tasks), you may require a . Pricing for a Zapier account is separate from a HigherGov subscription.

CRMs Supported by Zapier: A list of applications supported by Zapier is available . HigherGov has tested Zapier with and but most that support creating "pursuits", "deals", or "opportunities" should be able to ingest HigherGov opportunities.

Creating a Zapier Pipeline in HigherGov

To create a Zapier Pipeline you must have an active HigherGov subscription and be signed in as an Admin.

Select the gear icon in the upper right of the platform and select Integrations or click .

Scroll down to Zapier Integration and click the Create Pipeline button.

Give your pipeline a name and select the CRM you are linking to. If your CRM is not listed you can type in the name and press enter.

Securely save your Secret Key as it will only be available on this screen once.

Configuring Zapier

HigherGov provides one Trigger called the Pursuit Added Trigger that sends key information on the opportunity to your linked CRM. As part of creating your Zap and authenticating with HigherGov, you will provide the Secret Key you created above.

Adding Pursuits to Your Zapier Pipeline

Once you have set up your Zap you can add pursuits to your Pipeline.

Find Opportunities

HigherGov has many tools to help identify potential opportunities. See the below topics for more details on some of the available ways to identify opportunities.

Adding Pursuit Automatically

You can automatically create new pursuits from Federal Contract Opportunity, State and Local Contract Opportunity, Forecast Opportunity, DIBBS Opportunity, Grant Opportunity, IDV Award, Prime Contract Award, and Prime Grant Award pages by selecting the Pipeline dropdown in the upper right of the relevant page and then selecting the Zapier pipeline you previously created.

You will receive a message shortly after adding, indicating that the Pursuit has been successfully sent to Zapier using the Pipeline you selected or you will receive an error.

Zapier API Endpoints

Base URL

The base URL for our Zapier endpoints is https://www.highergov.com/zapier this will be referred to as {{BASE_URL}}.

Authentication

This is the endpoint that Zapier calls when a user is attempting to log into Zapier.

Location:

{{BASE_URL}}/auth/.

Sample Request:

const options = {
  url: '{{BASE_URL}/auth/',
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json',
    'X-API-KEY': api_key,
  },
};

return z.request(options)
  .then((response) => {
    response.throwForStatus();
    const results = response.json;

    return results;
})

Successful Response (201):

{"status": "success", "message": "API Key Validated", "subscription_name": "AcmeCo Pipeline"}

Subscribe

This is the endpoint that Zapier calls when a user is attempting to subscribe to a Zapier webhook.

Location:

{{BASE_URL}}/pipeline/subscribe/.

Sample Request:

const options = {
  url: '{{BASE_URL}/pipeline/subscribe/',
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json',
    'X-API-KEY': api_key,
  },
},
  body: JSON.stringify({
    target_url: bundle.targetUrl  
  }),
};

return z.request(options)
  .then((response) => {
    response.throwForStatus();
    const results = response.json;

    return results;
})

Successful Response (201):

{"status": "success", "message": "New subscription created"}

Unsubscribe

This is the endpoint that Zapier calls when a user is attempting to unsubscribe from a Zapier webhook.

Location:

{{BASE_URL}}/pipeline/unsubscribe/.

Sample Request:

const options = {
  url: '{{BASE_URL}/pipeline/unsubscribe/',
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json',
    'X-API-KEY': api_key,
  },
};

return z.request(options)
  .then((response) => {
    response.throwForStatus();
    const results = response.json;

    return results;
})

Successful Response (201):

{"status": "success", "message": "Subscription cancelled"}

Perform List

Returns sample data.

Location:

{{BASE_URL}}/perform/

Sample Request:

const options = {
  url: '{{BASE_URL}/perform/',
  method: 'Get',
  headers: {
    'Content-Type': 'application/json',
    'Accept': 'application/json',
  },
};

return z.request(options)
  .then((response) => {
    response.throwForStatus();
    const results = response.json;

    return results;
})

Successful Response (201):

{
"title": "string",
"description_text": "string",
"source_id": "string",
"source_id_version": "string",
"captured_date": "string",
"posted_date": "string",
"due_date": "string",
"agency": {
"agency_key": "string",
"agency_name": "string",
"agency_abbreviation": "string",
"agency_type": "string",
"path": "string"
},
"naics_code": {
"naics_code": "string"
},
"psc_code": {
"psc_code": "string"
},
"primary_contact_email": {
"contact_title": "string",
"contact_name": "string",
"contact_first_name": "string",
"contact_last_name": "string",
"contact_email": "string",
"contact_phone": "string"
},
"secondary_contact_email": {
"contact_title": "string",
"contact_name": "string",
"contact_first_name": "string",
"contact_last_name": "string",
"contact_email": "string",
"contact_phone": "string"
},
"set_aside": "string",
"opp_key": "string",
"version_key": "string",
"source_type": "string",
"unweighted_value": "string",
"current_datetime": "string",
"user_email": "string",
"path": "string"
}

To connect HigherGov to your CRM with Zapier, you will need to create a Zap. Detailed instructions on creating a Zap are available . A list of available templates is available .

The below covers the technical endpoints used to support the Zapier integration. Documentation on the main HigherGov API endpoints is available .

here
here
Federal Contracts
Federal Grants
State and Local Contracts
here
contact us
here
paid plan
here
HubSpot
Salesforce
CRMs
here