How Do I Find the Connector ID
Question
How do I find the connector_id
using the Fivetran REST API?
Answer
To find the connector_id
, do the following:
Find the
group_id
for your destination.NOTE: A group ID represents a destination.
Pass the
group_id
into the List All Connectors within a group endpoint.GET https://api.fivetran.com/v1/groups/{group_id}/connectors
Find the
connector_id
in the JSON response. See the key-value pair. For example,"id": "example_connector"
.
NOTE: You can also find the Connector ID in the Setup tab of your Fivetran dashboard.
Context
You need the connector_id
to manage your connectors using the Fivetran REST API.