It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:
- 🛠 Make your SDK feel handcrafted by customizing it
- ♻️ Refine your SDK quickly by iterating locally with the Speakeasy CLI
- 🎁 Publish your SDK to package managers by configuring automatic publishing
- ✨ When ready to productionize, delete this section from the README
Panora API: A unified API to ship integrations
- SDK Installation
- SDK Example Usage
- Available Resources and Operations
- Pagination
- Retries
- Error Handling
- Server Selection
- Custom HTTP Client
- Authentication
To add the SDK as a dependency to your project:
go get github.com/panoratech/go-sdk
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx)
if err != nil {
log.Fatal(err)
}
if res.Res != nil {
// handle response
}
}
Available methods
- SignIn - Log In
- List - List Connections
- GetPanoraCoreEvents - List Events
- GetFieldMappingValues - Retrieve field mappings values
- GetFieldMappingsEntities - Retrieve field mapping entities
- GetFieldMappings - Retrieve field mappings
- Definitions - Define target Field
- DefineCustomField - Create Custom Field
- Map - Map Custom Field
- RemoteID - Retrieve a Linked User From A Remote Id
- Create - Create Linked Users
- List - List Linked Users
- ImportBatch - Add Batch Linked Users
- Retrieve - Retrieve Linked Users
- Request - Make a passthrough request
- GetRetriedRequestResponse - Retrieve response of a failed passthrough request due to rate limits
- GetProjects - Retrieve projects
- Create - Create a project
- Query - Query using RAG Search
- Status - Retrieve sync status of a certain vertical
- Resync - Resync common objects across a vertical
- UpdatePullFrequency - Update pull frequency for verticals
- GetPullFrequency - Get pull frequency for verticals
- List - List webhooks
- Create - Create webhook
- Delete - Delete Webhook
- UpdateStatus - Update webhook status
- VerifyEvent - Verify payload signature of the webhook
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
To change the default retry strategy for a single API call, simply provide a retry.Config
object to the call by using the WithRetries
option:
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"github.com/panoratech/go-sdk/retry"
"log"
"models/operations"
)
func main() {
s := gosdk.New(
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx, operations.WithRetries(
retry.Config{
Strategy: "backoff",
Backoff: &retry.BackoffStrategy{
InitialInterval: 1,
MaxInterval: 50,
Exponent: 1.1,
MaxElapsedTime: 100,
},
RetryConnectionErrors: false,
}))
if err != nil {
log.Fatal(err)
}
if res.Res != nil {
// handle response
}
}
If you'd like to override the default retry strategy for all operations that support retries, you can use the WithRetryConfig
option at SDK initialization:
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"github.com/panoratech/go-sdk/retry"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithRetryConfig(
retry.Config{
Strategy: "backoff",
Backoff: &retry.BackoffStrategy{
InitialInterval: 1,
MaxInterval: 50,
Exponent: 1.1,
MaxElapsedTime: 100,
},
RetryConnectionErrors: false,
}),
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx)
if err != nil {
log.Fatal(err)
}
if res.Res != nil {
// handle response
}
}
Handling errors in this SDK should largely match your expectations. All operations return a response object or an error, they will never return both.
By Default, an API error will return sdkerrors.SDKError
. When custom error responses are specified for an operation, the SDK may also return their associated error. You can refer to respective Errors tables in SDK docs for more details on possible error types for each operation.
For example, the Hello
function may return the following errors:
Error Type | Status Code | Content Type |
---|---|---|
sdkerrors.SDKError | 4XX, 5XX | */* |
package main
import (
"context"
"errors"
gosdk "github.com/panoratech/go-sdk"
"github.com/panoratech/go-sdk/models/sdkerrors"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx)
if err != nil {
var e *sdkerrors.SDKError
if errors.As(err, &e) {
// handle error
log.Fatal(e.Error())
}
}
}
You can override the default server globally using the WithServerIndex(serverIndex int)
option when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
# | Server |
---|---|
0 | https://api.panora.dev |
1 | https://api-sandbox.panora.dev |
2 | https://api-dev.panora.dev |
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithServerIndex(2),
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx)
if err != nil {
log.Fatal(err)
}
if res.Res != nil {
// handle response
}
}
The default server can also be overridden globally using the WithServerURL(serverURL string)
option when initializing the SDK client instance. For example:
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithServerURL("https://api.panora.dev"),
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx)
if err != nil {
log.Fatal(err)
}
if res.Res != nil {
// handle response
}
}
The Go SDK makes API calls that wrap an internal HTTP client. The requirements for the HTTP client are very simple. It must match this interface:
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}
The built-in net/http
client satisfies this interface and a default client based on the built-in is provided by default. To replace this default with a client of your own, you can implement this interface yourself or provide your own client configured as desired. Here's a simple example, which adds a client with a 30 second timeout.
import (
"net/http"
"time"
"github.com/myorg/your-go-sdk"
)
var (
httpClient = &http.Client{Timeout: 30 * time.Second}
sdkClient = sdk.New(sdk.WithClient(httpClient))
)
This can be a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration.
This SDK supports the following security scheme globally:
Name | Type | Scheme |
---|---|---|
APIKey |
apiKey | API key |
You can configure it using the WithSecurity
option when initializing the SDK client instance. For example:
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Hello(ctx)
if err != nil {
log.Fatal(err)
}
if res.Res != nil {
// handle response
}
}
Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
returned response object will have a Next
method that can be called to pull down the next group of results. If the
return value of Next
is nil
, then there are no more pages to be fetched.
Here's an example of one such pagination call:
package main
import (
"context"
gosdk "github.com/panoratech/go-sdk"
"log"
)
func main() {
s := gosdk.New(
gosdk.WithSecurity("<YOUR_API_KEY_HERE>"),
)
ctx := context.Background()
res, err := s.Filestorage.Files.List(ctx, "<value>", gosdk.Bool(true), gosdk.Float64(10), gosdk.String("1b8b05bb-5273-4012-b520-8657b0b90874"))
if err != nil {
log.Fatal(err)
}
if res.Object != nil {
for {
// handle items
res, err = res.Next()
if err != nil {
// handle error
}
if res == nil {
break
}
}
}
}
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.
While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.