Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby

Gatsby with SugarCRM

This plugin pulls in data using the SugarCRM REST API

Install

  1. yarn add gatsby-source-sugarcrm or npm i gatsby-source-sugarcrm
  2. Make sure plugin is referenced in your gatsby-config.js, as seen below
  3. gatsby develop

Setup

Sample configuration for gatsby-config.js

plugins: [
    {
      resolve: `gatsby-source-sugarcrm`,
      options: {
        endpoint: 'API_ENDPOINT',
        configOptions: {
          client_id: 'sugar',
          client_secret: '',
          username: 'SUGAR_USERNAME',
          password: 'PASSWORD',
          platform: 'base'
        },
        modules: [
            'MODULE_NAME'
        ]
      }
    },
],
© 2023 Gatsby, Inc.