Summary
The user is facing issues when trying to set the event_uid parameter in a custom connector for the idloom API. The tests are failing in Airbyte, but the same API calls work fine in the terminal. The user is looking for help to understand why setting event_uid is causing an error in Airbyte.
Question
Hi team, this is my first time building out a custom connector and I’m seeing some behaviour that I’m struggling to understand.
I’m using the no code builder, and trying to build against the <https://idloom.events/docs/|idloom API,> specifically the get attendees method. In this method either event_uid
or guest_uid
must be set, but for some reason all my tests are failing when I try and set event_uid in airbyte (despite the same call working fine in terminal).
I can run both of the following in my terminal, and get results:
--url '<https://idloom.events/api/v4/attendees?event_uid=62d79a7aa7467>' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer [my_token]'```
```curl --request GET \
--url '<https://idloom.events/api/v4/attendees?guest_uid=62de54755f8e4>' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer [my_token]'```
I can get the same results in airbyte by setting a query parameter with key `guest_uid` and value `62de54755f8e4` , but as soon as I try to replicate the same with key `event_uid` I get an error starting:
```Something went wrong in the connector. See the logs for more details.```
I can't then see the logs, but can someone help me understand what is happening? Is event_uid a key that I can't use in a query for some reason? How do I get around this?
<br>
---
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C027KKE4BCZ/p1716296004394709) if you want
to access the original thread.
[Join the conversation on Slack](https://slack.airbyte.com)
<sub>
["custom-connector", "idloom-api", "event-uid", "query-parameter", "error"]
</sub>