Version 2.0.0 is here!
We added comprehensivecontext.Contextsupport across all SDK clients.
All client methods now have*WithContextvariants for better timeout handling, cancellation support, and request lifecycle control.
Backward compatibility is maintained: existing methods continue to work by usingcontext.Background()internally.
Make sure your project is using Go Modules:
# For v2.x (current)
go get github.com/checkout/checkout-sdk-go/v2@v2.0.0
# For v1.x (legacy)
go get github.com/checkout/checkout-sdk-go@v1.9.0
Then import the library into your code:
# For v2.x
import "github.com/checkout/checkout-sdk-go/v2"
# For v1.x
import "github.com/checkout/checkout-sdk-go"
This SDK can be used with two different pair of API keys provided by Checkout. However, using different API keys imply
using specific API features.
Please find in the table below the types of keys that can be used within this SDK.
| Account System | Public Key (example) | Secret Key (example) |
|---|---|---|
| Default | pk_pkhpdtvabcf7hdgpwnbhw7r2uic | sk_m73dzypy7cf3gf5d2xr4k7sxo4e |
| Previous | pk_g650ff27-7c42-4ce1-ae90-5691a188ee7b | sk_gk3517a8-3z01-45fq-b4bd-4282384b0a64 |
Note: sandbox keys have a sbox_ or test_ identifier, for Default and Previous accounts respectively.
If you don’t have your own API keys, you can sign up for a test
account here.
PLEASE NEVER SHARE OR PUBLISH YOUR CHECKOUT CREDENTIALS.
Default keys client instantiation can be done as follows:
import (
"github.com/checkout/checkout-sdk-go/v2"
"github.com/checkout/checkout-sdk-go/v2/configuration"
)
api, err := checkout.Builder().
StaticKeys().
WithEnvironment(configuration.Sandbox()).
WithSecretKey("secret_key").
WithPublicKey("public_key"). // optional, only required for operations related with tokens
Build()
The SDK supports client credentials OAuth, when initialized as follows:
import (
"github.com/checkout/checkout-sdk-go/v2"
"github.com/checkout/checkout-sdk-go/v2/configuration"
)
api, err := checkout.Builder().
OAuth().
WithAuthorizationUri("https://access.sandbox.checkout.com/connect/token"). // optional, custom authorization URI
WithClientCredentials("client_id", "client_secret").
WithEnvironment(configuration.Sandbox()).
WithScopes(getOAuthScopes()).
Build()
If your pair of keys matches the previous system type, this is how the SDK should be used:
import (
"github.com/checkout/checkout-sdk-go/v2"
"github.com/checkout/checkout-sdk-go/v2/configuration"
)
api, err := checkout.Builder().
Previous().
WithEnvironment(configuration.Sandbox()).
WithSecretKey("secret_key").
WithPublicKey("public_key"). // optional, only required for operations related with tokens
Build()
Then just get any client, and start making requests:
import (
"github.com/checkout/checkout-sdk-go/v2/payments"
"github.com/checkout/checkout-sdk-go/v2/payments/nas"
)
request := nas.PaymentRequest{}
response, err := api.Payments.RequestPayment(request)
All the API responses that do not fall in the 2** status codes will return a errors.CheckoutApiError. The
error encapsulates the StatusCode, Status and a the ErrorDetails, if available.
Go SDK supports your own configuration for http client using http.Client from the standard library. You can pass it through when instantiating the SDK as follows:
import (
"net/http"
"github.com/checkout/checkout-sdk-go/v2"
"github.com/checkout/checkout-sdk-go/v2/configuration"
)
httpClient := http.Client{
Timeout: time.Duration(20) * time.Millisecond,
}
api, err := checkout.Builder().
StaticKeys().
WithEnvironment(configuration.Sandbox()).
WithHttpClient(&httpClient).
WithSecretKey("secret_key")).
WithPublicKey("public_key")). // optional, only required for operations related with tokens
Build()
The SDK supports custom Log provider. You can provide your log configuration via SDK initialization. By default, the SDK uses the log package from the standard library.
import (
"log"
"github.com/checkout/checkout-sdk-go/v2"
"github.com/checkout/checkout-sdk-go/v2/configuration"
)
logger := log.New(os.Stderr, "checkout-sdk-go - ", log.LstdFlags)
api, err := checkout.Builder().
StaticKeys().
WithEnvironment(configuration.Sandbox()).
WithSecretKey("secret_key")).
WithPublicKey("public_key")). // optional, only required for operations related with tokens
WithLogger(logger) // your own custom configuration
Build()
In case that you want to use an integrator or mock server, you can specify your own URI configuration as follows:
import (
"github.com/checkout/checkout-sdk-go/v2"
"github.com/checkout/checkout-sdk-go/v2/configuration"
)
environment := configuration.NewEnvironment(
"https://the.base.uri/", // the uri for all CKO operations
"https://the.oauth.uri/connect/token", // the uri used for OAUTH authorization, only required for OAuth operations
"https://the.files.uri/", // the uri used for Files operations, only required for Accounts module
"https://the.transfers.uri/", // the uri used for Transfer operations, only required for Transfers module
"https://the.balances.uri/", // the uri used for Balances operations, only required for Balances module false
)
api, err := checkout.Builder().
StaticKeys().
WithEnvironment(environment).
WithSecretKey("secret_key")).
WithPublicKey("public_key")). // optional, only required for operations related with tokens
Build()
Once you check out the code from GitHub, the project can be built using:
go mod tidy
go build
The execution of integration tests require the following environment variables set in your system:
CHECKOUT_DEFAULT_PUBLIC_KEY & CHECKOUT_DEFAULT_SECRET_KEYCHECKOUT_DEFAULT_OAUTH_CLIENT_ID & CHECKOUT_DEFAULT_OAUTH_CLIENT_SECRETCHECKOUT_PREVIOUS_PUBLIC_KEY & CHECKOUT_PREVIOUS_SECRET_KEYRequest telementry is enabled by default in the Go SDK. Request latency is included in the telemetry data. Recording the request latency allows Checkout.com to continuously monitor and imporove the merchant experience.
Request telemetry can be disabled by opting out during checkout_sdk_builder builder step:
api := checkout.Builder().
Previous().
WithSecretKey("CHECKOUT_PREVIOUS_SECRET_KEY").
WithEnvironment(configuration.Sandbox()).
WithEnableTelemetry(false).
Build()
Please refer to Code of Conduct