strapi-provider-email-hubspot
v1.0.1
Published
- [LICENSE](LICENSE)
Readme
Resources
Links
Installation
# using yarn
yarn add strapi-provider-hubspot
# using npm
npm install strapi-provider-hubspot --saveConfiguration
| Variable | Type | Description | Required | Default | |---------------------------| ----------------------- |---------------------------------------------------------------------|--------| ------- | | provider | string | The name of the provider you use | yes | | | providerOptions | object | Provider options | yes | | | providerOptions.apiKey | object | Please refer to openai | yes | |
Example
Path - config/plugins.js
module.exports = ({ env }) => ({
// ...
"search-engine": {
enabled: true,
config: {
provider: 'meilisearch',
providerOptions: {
apiKey: env('HUBSPOT_API_KEY'),
},
},
},
// ...
});