Reviewer:
1. DM me to get a client ID/secret for the Hubspot app and login
credentials for a sample Hubspot account
2. For now, you'll need to run the engine on the branch
`nate/token-introspection` for the auth flow to work with Hubspot
3. Add the following to `auth.providers` in your engine yaml:
```yaml
- id: arcade-hubspot
description: 'Hubspot provider'
enabled: true
type: oauth2
provider_id: hubspot
client_id: ${env:HUBSPOT_CLIENT_ID}
client_secret: ${env:HUBSPOT_CLIENT_SECRET}
```
8 lines
276 B
Python
8 lines
276 B
Python
from arcade_hubspot.tools.crm.companies import get_company_data_by_keywords
|
|
from arcade_hubspot.tools.crm.contacts import create_contact, get_contact_data_by_keywords
|
|
|
|
__all__ = [
|
|
"get_company_data_by_keywords",
|
|
"get_contact_data_by_keywords",
|
|
"create_contact",
|
|
]
|