This plugin moves data from the Hubspot API to S3 based on the specified object
This hook handles the authentication and request to Hubspot. This extends the HttpHook.
Core Airflow S3Hook with the standard boto dependency.
This operator composes the logic for this plugin. It fetches the Hubpsot specified object and saves the result in a S3 Bucket, under a specified key, in njson format. The parameters it can accept include the following.
NOTE: A number of endpoints have nested arrays that are moved into their own table. In situations like this, the secondary table will have the prefix of the main Hubspot object.
Example: The "Form Submissions" list of dictionaries in the contacts object will become it's own table with the label "contacts_form_submissions".
hubspot_conn_id
The Hubspot connection id.hubspot_object
The desired Hubspot object. The currently supported values are: - campaigns - companies - contacts - contacts_by_company - deals - deal_pipelines - events - engagements - forms - keywords - lists - social - owners - timeline - workflowshubspot_args
Any additional arguments being sent to Hubspot to filter or format the results. Acceptable parameters will vary by object being requested. See Hubspot documentation for more details.s3_conn_id
The s3 connection id.s3_bucket
The S3 bucket to be used to store the Hubspot data.s3_key
The S3 key to be used to store the Hubspot data.