Skip to content

fident/go-manage

Repository files navigation

go-manage

Go helper library for fident management API

Import this library into your project

import client "github.com/fident/go-manage"

Init a new client using your fident instance address and your service key file

testClient, err := client.New("./mykey.json", client.FidentInstancePublic)
if err != nil {
	panic(err)
}

Start querying your fident project

details, err := testClient.GetAccountDetailsForIdentityID("EFIDFIID-ZGVT5I6L4-MISCR-V5UX35S")
if err != nil {
	panic(err)
}