Categorygithub.com/panoratech/go-sdk
repositorypackage
0.7.0
Repository: https://github.com/panoratech/go-sdk.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

github.com/panoratech/go-sdk

🏗 Welcome to your new SDK! 🏗

It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:

Summary

Panora API: A unified API to ship integrations

Table of Contents

SDK Installation

To add the SDK as a dependency to your project:

go get github.com/panoratech/go-sdk

SDK Example Usage

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
	}
}

Available Resources and Operations

Available methods

Accounting

Accounting.Accounts

Accounting.Addresses

Accounting.Attachments

Accounting.Balancesheets

  • List - List BalanceSheets
  • Retrieve - Retrieve BalanceSheets

Accounting.Cashflowstatements

  • List - List CashflowStatements
  • Retrieve - Retrieve Cashflow Statements

Accounting.Companyinfos

  • List - List CompanyInfos
  • Retrieve - Retrieve Company Infos

Accounting.Contacts

Accounting.Creditnotes

Accounting.Expenses

Accounting.Incomestatements

  • List - List IncomeStatements
  • Retrieve - Retrieve Income Statements

Accounting.Invoices

Accounting.Items

Accounting.Journalentries

  • List - List JournalEntrys
  • Create - Create Journal Entries
  • Retrieve - Retrieve Journal Entries

Accounting.Payments

Accounting.Phonenumbers

  • List - List PhoneNumbers
  • Retrieve - Retrieve Phone Numbers

Accounting.Purchaseorders

  • List - List PurchaseOrders
  • Create - Create Purchase Orders
  • Retrieve - Retrieve Purchase Orders

Accounting.Taxrates

Accounting.Trackingcategories

  • List - List TrackingCategorys
  • Retrieve - Retrieve Tracking Categories

Accounting.Transactions

Accounting.Vendorcredits

  • List - List VendorCredits
  • Retrieve - Retrieve Vendor Credits

Auth

Auth.Login

Connections

  • List - List Connections

Crm

Crm.Companies

Crm.Contacts

Crm.Deals

Crm.Engagements

Crm.Notes

Crm.Stages

Crm.Tasks

Crm.Users

Ecommerce

Ecommerce.Customers

Ecommerce.Fulfillments

Ecommerce.Orders

Ecommerce.Products

Events

FieldMappings

Filestorage

Filestorage.Files

Filestorage.Folders

Filestorage.Groups

Filestorage.Users

LinkedUsers

Marketingautomation

Marketingautomation.Actions

Marketingautomation.Automations

Marketingautomation.Campaigns

Marketingautomation.Contacts

Marketingautomation.Emails

Marketingautomation.Events

Marketingautomation.Lists

Marketingautomation.Messages

Marketingautomation.Templates

Marketingautomation.Users

Panora SDK

Passthrough

  • Request - Make a passthrough request

Passthrough.{retryid}

Projects

Rag

  • Query - Query using RAG Search

Sync

Ticketing

Ticketing.Accounts

Ticketing.Attachments

Ticketing.Collections

Ticketing.Comments

Ticketing.Contacts

Ticketing.Tags

Ticketing.Teams

Ticketing.Tickets

Ticketing.Users

Webhooks

Retries

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
	}
}

Error Handling

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 TypeStatus CodeContent Type
sdkerrors.SDKError4XX, 5XX*/*

Example

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())
		}
	}
}

Server Selection

Select Server by Index

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
0https://api.panora.dev
1https://api-sandbox.panora.dev
2https://api-dev.panora.dev

Example

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
	}
}

Override Server URL Per-Client

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
	}
}

Custom HTTP Client

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.

Authentication

Per-Client Security Schemes

This SDK supports the following security scheme globally:

NameTypeScheme
APIKeyapiKeyAPI 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
	}
}

Pagination

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
			}
		}

	}
}

Development

Maturity

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.

Contributions

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.

SDK Created by [Speakeasy](https://www.speakeasy.com/?utm_source=&utm_campaign=go)