Skip to main content

Go SDK

Read this guide to learn how to use the Go SDK. The Go SDK has some pre-built code examples you can use to learn how to build tools that can interact with IdentityNow.

Requirements

You need the following to use the Go SDK:

  • Golang version 1.18 or above. You can download it here. You can use go version to check your version.

  • Your tenant name in IdentityNow. To learn how to find it, refer to Getting Started. The SDK will use this tenant name to connect to your IdentityNow instance.

  • A PAT with a client secret and ID. To learn how to create one in ISC, refer to Personal Access Tokens. The SDK will use this PAT to authenticate with the SailPoint APIs.

Setup

CLI Assisted (Recommended)

The SailPoint CLI offers a few commands that will allow you to quickly get started with the Go SDK. To learn how to install and use the SailPoint CLI, refer to SailPoint CLI.

Once the CLI is installed and configured, run this command to create a new Go project with the Go SDK:

sail sdk init golang go-example

Running the command will create the structure for your project:

|-- go-example
| |-- go.mod
| |-- go.sum
| |-- sdk.go

Navigate into your project folder and run this command to install the required dependencies:

go mod tidy

The SDK is now installed. To learn how to configure the SDK, refer to the Configure section.

Manual Installation

To begin your go project, you will need to create a directory for your project.

To create a project directory, run this command:

mkdir golang-example

Then run this command to change into your project directory:

cd golang-example

To initialize your project and create the go.mod file, run this command in your project directory:

go mod init github.com/github-repo-name/golang-example

You will edit this file to add the SailPoint SDK to your project.

To install the SailPoint SDK, run this command:

go get github.com/sailpoint-oss/golang-sdk

The SDK is now installed. To learn how to configure the SDK, refer to the Configure section.

Configure

You must provide configuration to the SDK so that it can authenticate to your SailPoint tenant and make API calls. To do so, you can use a configuration file, "config.json", or environment variables.

Configuration File

The SDK requires a configuration file to be named "config.json". Within the file, provide these key/value pairs: ClientId, ClientSecret, BaseURL.

CLI Assisted (Recommended)
The SailPoint CLI offers a command to generate the "config.json" file with your currently configured CLI credentials.
sail sdk init config

If you have multiple environments configured with the CLI, you can pass an additional parameter to state the environment you wish to create a "config.json" for.

To pass an additional parameter that states the environment you want to configure, run this command:

sail sdk init config --env devrel

Example "config.json"

{
"ClientId": "g0567b766b413b22c05c66e75d532f1b",
"ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7",
"BaseURL": "https://[tenant].api.identitynow.com"
}
Manual Configuration

Create a file named "config.json", and provide these key/value pairs: ClientId, ClientSecret, BaseURL.

Example "config.json"

{
"ClientId": "g0567b766b413b22c05c66e75d532f1b",
"ClientSecret": "cabd0e950a7230b63c1ff45be33fb22065b382b6251a73c61177a8bb5482fcc7",
"BaseURL": "https://[tenant].api.identitynow.com"
}
danger

Please ensure this file is ignored in your version control system (ex. .gitignore for git)

Environment variable configuration

You can also store your configuration in environment variables.

To get your environment variables to persist across terminal sessions, add these exports to your shell profile, something like ~/.bash_profile.

export SAIL_BASE_URL=https://[tenant].api.identitynow.com
export SAIL_CLIENT_ID=[clientID]
export SAIL_CLIENT_SECRET=[clientSecret]

Discuss

You can use this SDK to build new tools that extend your ISC platform and improve experiences across your organization. Use this guide to get started, and if you have questions, don't hesitate to reach out on the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss!

Getting Started

To get started using the SDK, refer to the Getting Started Guide.