Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-personio

This is a source plugin for fetching employees list from the Personio API

Set The Config

In gatsby-config.js:

module.exports = {
    plugins: [
        {
            resolve: 'gatsby-source-personio',
            options: {
                credentials: {
                    clientId: 'YOUR_ID',
                    clientSecret: 'YOUR_SECRET'
                }
            },
        },
    ],
}
© 2023 Gatsby, Inc.