Hi, I was using hubspot extractor potloc version a...
# troubleshooting
s
Hi, I was using hubspot extractor potloc version and it was running fine yesterday. Today I encountered this error:
Copy code
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

Plugin configuration is invalid
singer_sdk.exceptions.FatalAPIError: 403 Client Error: Forbidden for path: /analytics/v2/views
Has anyone else faced this error before? Seems like a bug in hubspot: https://community.hubspot.com/t5/APIs-Integrations/HTTP-403-errors/m-p/241134
e
Hi @sweta_garai! Thanks for sharing. If you don't need that stream, you could exclude it using `select`:
Copy code
plugins:
  extractors:
  - name: tap-hubspot
    select:
    - "*.*"
    - "!analytics_views_v2.*"
s
This helps. Thanks @edgar_ramirez_mondragon. I was able to run the contacts.properties stream with:
Copy code
select:
    - '!analytics_views_v2.*'
    - 'contacts.properties.*'
Would it be possible to extract further and get sub stream like contacts.properties.email? I tried doing that and I get KeyError: 'updatedAt'. Is there any other way to extract substreams?