Use the Fabra API to build customer-facing data warehouse integrations to let your customers start sending data to your application. Unblock your sales pipeline in days, not months.
go get github.com/fabra-io/go-sdk
package main
import(
"context"
"log"
"github.com/fabra-io/go-sdk"
"github.com/fabra-io/go-sdk/pkg/models/operations"
)
func main() {
s := fabra.New(
fabra.WithSecurity(shared.Security{
APIKeyAuth: "YOUR_API_KEY_HERE",
}),
)
ctx := context.Background()
res, err := s.Connection.GetNamespaces(ctx, 548814)
if err != nil {
log.Fatal(err)
}
if res.Namespaces != nil {
// handle response
}
}
- GetNamespaces - Get all namespaces
- GetSchema - Get schema for table
- GetTables - Get all tables
- CreateDestination - Create a new destination
- GetDestinations - Get all destinations
- CreateLinkToken - Create a new link token
- CreateObject - Create a new object
- GetObjects - Get all objects
- CreateSource - Create a new source
- GetSources - Get all sources
- CreateSync - Create a new sync
- GetSyncs - Get all syncs