Hubspot
HubspotReader #
Bases: BaseReader
Hubspot reader. Reads data from a Hubspot account.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
access_token(str)
|
Hubspot API key. |
required |
Source code in llama-index-integrations/readers/llama-index-readers-hubspot/llama_index/readers/hubspot/base.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|
load_data #
load_data() -> List[Document]
Load deals, contacts and companies data from Hubspot.
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: List of documents, where each document represensts a list of Hubspot objects |
Source code in llama-index-integrations/readers/llama-index-readers-hubspot/llama_index/readers/hubspot/base.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
|