Skip to main content
The Go client is github.com/parable-platform/platform-schemas/sdk/go/web-api. It covers every endpoint in the API Reference.
Your Parable representative will confirm module access if the package is not public yet.

Install

Import and authenticate

Create a client with your workspace API token. See Authentication if you do not have one.
The client sends Authorization: Bearer ... on every call.

Read

Who you are, then the connectors configured in your workspace:

Update

Enable a tap. Replace the id with one from your workspace. List taps with sdk.TenantConnectorTapsNamespace.TenantConnectorTaps(ctx, nil).
Omitted fields are left unchanged. To disable the tap, set Value: false.
This SDK maps directly to API names. Groups in the API Reference are namespaces (sdk.UsersNamespace, sdk.VendorsNamespace); operation names are methods (Me, TenantConnectorInstances). If an endpoint is in that spec, it is on this client.