Skip to content

fivetran/go-fivetran

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fivetran SDK for Go

Go Reference

go-fivetran is the official Fivetran SDK for the Go programming language.

Checkout our CHANGELOG for information about the latest bug fixes, updates, and features added to the SDK.

Make sure you read the Fivetran REST API documentation before using the SDK.

Installation

go get github.com/fivetran/go-fivetran

Importing

import (
    "github.com/fivetran/go-fivetran"
)

Getting started

Initialize a new Fivetran client:

	// get apiKey and apiSecret from environment variables
	apiKey := os.Getenv("FIVETRAN_APIKEY")
	apiSecret := os.Getenv("FIVETRAN_APISECRET")

	// initialize a new client
	client := fivetran.New(apiKey, apiSecret)

Each REST API endpoint has a service. Initialize a new Service:

	// initialize a new UsersList service
	svc := client.NewUsersList()

Call the API:

	// call the REST API
	resp, err := svc.Do(context.Background())
	if err != nil {
		...
	}

Or you can simply call API in chain style. Call Do() at the end to send an HTTP request to the REST API:

	resp, err := client.NewUsersList().
		Limit(3).
		Do(context.Background())

Examples

You can find examples for all services in the examples directory.

API List

The following Fivetran REST API endpoints are implemented by the Fivetran SDK for Go:

REST API Endpoint REST API Version SDK Service
List all Users v1 UsersListService
Retrieve user details v1 UserDetailsService
Invite a user v1 UserInviteService
Update a user v1 UserUpdateService
Delete a user v1 UserDeleteService
List all connection memberships v1 UserConnectionMembershipsListService
Retrieve connection membership v1 UserConnectionMembershipDetailsService
Add connection membership v1 UserConnectionMembershipCreateService
Update connection membership v1 UserConnectionMembershipUpdateService
Delete connection membership v1 UserConnectionMembershipDeleteService
List all group memberships v1 UserGroupMembershipsListService
Retrieve group membership v1 UserGroupMembershipDetailsService
Add group membership v1 UserGroupMembershipCreateService
Update group membership v1 UserGroupMembershipUpdateService
Delete group membership v1 UserGroupMembershipDeleteService
REST API Endpoint REST API Version SDK Service
Create a group v1 GroupCreateService
List all groups v1 GroupsListService
Retrieve group details v1 GroupDetailsService
Update a group v1 GroupUpdateService
List All Connections within a Group v1 GroupListConnectionsService
List all users within a group v1 GroupListUsersService
Add a user to a group v1 GroupAddUserService
Remove a user from a group v1 GroupRemoveUserService
Delete a group v1 GroupDeleteService
Retrieve Group Public SSH Key v1 GroupSshKeyService
Retrieve Group Service Account v1 GroupServiceAccountService
REST API Endpoint REST API Version SDK Service/Config
List all destinations within account v1 DestinationsListService
Create a destination v1 DestinationCreateService
Retrieve destination details v1 DestinationDetailsService
Update a destination v1 DestinationUpdateService
Run destination setup tests v1 DestinationSetupTestsService
Delete a destination v1 DestinationDeleteService
REST API Endpoint REST API Version SDK Service
Create Transformation Project v1 TransformationProjectCreateService
Delete Transformation Project v1 TransformationProjectDeleteService
List all Transformation Projects within Account v1 TransformationProjectsListService
Retrieve Transformation Project Details v1 TransformationProjectDetailsService
Test Transformation Project v1 TransformationProjectTestsService
Update Transformation Project v1 TransformationProjectUpdateService
Create Transformation v1 TransformationCreateService
Update Transformation v1 TransformationUpdateService
Delete Transformation v1 TransformationDeleteService
Retrieve Transformation Details v1 TransformationDetailsService
List all Transformations within Account v1 TransformationsListService
Upgrade Transformation Package v1 TransformationUpgradePackageService
Run Transformation v1 TransformationRunService
Cancel Transformation v1 TransformationCancelService
List All Quickstart Package Metadata v1 QuickstartPackagesListService
Retrieve Quickstart Package Metadata Details v1 QuickstartPackagesDetailsService
REST API Endpoint REST API Version SDK Service/Config/Auth
Create a connection v2 ConnectionCreateService
Delete a connection v1 ConnectionDeleteService
List all connections within account v1 ConnectionsListService
Retrieve connection details v2 ConnectionDetailsService
Run connection setup tests v2 ConnectionSetupTestsService
Sync connection data v1 ConnectionSyncService
Update a connection v2 ConnectionUpdateService
Connect Card v1 ConnectCardService
Retrieve source metadata v1 ConnectionsSourceMetadataService
REST API Endpoint REST API Version SDK Service/Config/Auth
Setup a Connection Schema Config for a connection that doesn't have schema settings yet. v1 ConnectionSchemaConfigCreateService
Update a connection schema config v1 ConnectionSchemaConfigUpdateService
Update a connection database schema config v1 ConnectionDatabaseSchemaConfigUpdateService
Update a connection table config v1 ConnectionTableConfigUpdateService
Update a connection column config v1 ConnectionColumnConfigUpdateService
Re-sync Connection Table Data v1 ConnectionReSyncTableService
Reload a connection schema config v1 ConnectionSchemaReloadService
Retrieve a connection schema config v1 ConnectionSchemaDetailsService
Retrieve source table columns config v1 ConnectionColumnConfigListService
REST API Endpoint REST API Version SDK Service
Approve a certificate for the connection v1 ConnectionCertificateApproveService
Approve a fingerprint for the connection v1 ConnectionFingerprintApproveService
Approve a certificate for the destination v1 DestinationCertificateApproveService
Approve a fingerprint for the destination v1 DestinationFingerprintApproveService
List all approved certificates for connection v1 ConnectionCertificatesListService
List all approved fingerprints for connection v1 ConnectionFingerprintsListService
List all approved certificates for destination v1 DestinationCertificatesListService
List all approved fingerprints for destination v1 DestinationFingerprintsListService
Retrieve a connection certificate details v1 ConnectionCertificateDetailsService
Retrieve a connection fingerprint details v1 ConnectionFingerprintDetailsService
Retrieve a destination certificate details v1 DestinationCertificateDetailsService
Retrieve a destination fingerprint details v1 DestinationFingerprintDetailsService
Revoke connection certificate v1 ConnectionCertificateRevokeService
Revoke connection fingerprint v1 ConnectionFingerprintRevokeService
Revoke destination certificate v1 DestinationCertificateRevokeService
Revoke destination fingerprint v1 DestinationFingerprintRevokeService
REST API Endpoint REST API Version SDK Service/Config
List all Log Services v1 ExternalLoggingListService
Create a Log Service v1 ExternalLoggingCreateService
Retrieve Log Service Details v1 ExternalLoggingDetailsService
Update a Log Service v1 ExternalLoggingUpdateService
Delete a Log Service v1 ExternalLoggingDeleteService
Run Log Service Setup Tests v1 ExternalLoggingSetupTestsService
REST API Endpoint REST API Version SDK Service/Config
Create account webhook v1 WebhookAccountCreateService
Create group webhook v1 WebhookGroupCreateService
Retrieve webhook details v1 WebhookDetailsService
Update webhook v1 WebhookUpdateService
Delete webhook v1 WebhookDeleteService
Retrieve the list of webhooks v1 WebhookListService
Test webhook v1 WebhookTestService
REST API Endpoint REST API Version SDK Service/Config
List all roles v1 RolesListService
REST API Endpoint REST API Version SDK Service/Config

Create a team | v1 | TeamsCreateService Add a user to a team | v1 | TeamUserMembershipCreateService Add connection membership | v1 | TeamConnectionMembershipCreateService Add group membership | v1 | TeamGroupMembershipCreateService Delete a team | v1 | TeamsDeleteService Delete a user from a team | v1 | TeamUserMembershipDeleteService Delete connection membership | v1 | TeamConnectionMembershipDeleteService Delete group membership | v1 | TeamGroupMembershipDeleteService Delete a team role in the account | v1 | TeamsDeleteRoleInAccountService List all connection memberships | v1 | TeamConnectionMembershipsListService List all group memberships | v1 | TeamGroupMembershipsService List all teams | v1 | TeamsListService List all user memberships | v1 | TeamUserMembershipsListService Retrieve connection membership | v1 | TeamConnectionMembershipDetailsService Retrieve group membership | v1 | TeamGroupMembershipDetailsService Retrieve team details | v1 | TeamsDetailsService Retrieve user membership | v1 | TeamUserMembershipDetailsService Update a team | v1 | TeamsUpdateService Update a user membership | v1 | TeamUserMembershipUpdateService Update connection membership | v1 | TeamConnectionMembershipUpdateService Update group membership | v1 | TeamGroupMembershipUpdateService

REST API Endpoint REST API Version SDK Service/Config
Create a Private Link v1 PrivateLinksCreateService
List all Private Links within Account v1 PrivateLinkListService
Retrieve Private Link Details v1 PrivateLinksDetailsService
Update a Private Link v1 PrivateLinksUpdateService
Delete a Private Link v1 PrivateLinksDeleteService
REST API Endpoint REST API Version SDK Service/Config
Create a Proxy Agent v1 ProxyCreateService
List all Proxy Agents v1 ProxyListService
Retrieve Proxy Agent Details v1 ProxyDetailsService
Delete a Proxy Agent v1 ProxyDeleteService
Return all connections attached to the proxy agent v1 ProxyConnectionMembershipsListService
REST API Endpoint REST API Version SDK Service/Config
Create a Hybrid Deployment Agent v1 HybridDeploymentAgentCreateService
List Hybrid Deployment Agents v1 HybridDeploymentAgentListService
Retrieve Hybrid Deployment Agent Details v1 HybridDeploymentAgentDetailsService
Delete a Hybrid Deployment Agent v1 HybridDeploymentAgentDeleteService
Regenerate authentication keys v1 HybridDeploymentAgentReAuthService
Reset credentials v1 HybridDeploymentAgentResetCredentialsService

Support

Please get in touch with us through our Support Portal if you have any comments, suggestions, support requests, or bug reports.