Anyone using `tap-zendesk` at all? I've gone thro...
# plugins-general
s
Anyone using
tap-zendesk
at all? I've gone through two variants and getting
zenpy.lib.exception.APIException: {"error": {"title": "Forbidden", "message": "You do not have access to this page. Please contact the account owner of this help desk for further help."}}
both times. Double checked the the yml with both variants and still at a loss. The only thing I can think of is the API docs with Zendesk require the User and API token to be encoded in base64 but I assume the taps are doing that already. Anyone hit a similar problem? I've been able to authenticate via Postman so the API key is definitely valid
p
What config values are you setting? I’d expect you need to set
TAP_ZENDESK_EMAIL
,
TAP_ZENDESK_API_TOKEN
, and
TAP_ZENDESK_SUBDOMAIN
for authentication to work with an api token.
s
my meltano.yml file has the below: plugins: extractors: - name: tap-zendesk variant: twilio-labs pip_url: twilio-tap-zendesk config: email: redacted subdomain: redacted start_date: '2023-05-08T111040.000Z' select: - tickets.updated_at and in my .env I have: _TAP_ZENDESK_API_TOKEN="Redacted"_
I've found a few of the 'selects' that do work fine so it must be some scoping with the API key that was causing the issue. Will investigate!