Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 835 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 835 Bytes

sec-jumpcloud-client-go

A Go client for Jumpcloud

"Jumpcloud" is a trademark of Jumpcloud, Inc. "Go" is a trademark of Google LLC or its affiliate ("Google") for its programming language (see https://go.dev/brand). These marks are used nominatively to indicate the nature and function of Spotnana's source code, which is neither sponsored or endorsed by Jumpcloud, Inc. or Google.

Tests

Example Usage

package main

import (
	"github.com/Spotnana-Tech/sec-jumpcloud-client-go"
)

func main() {
	// Create a new Jumpcloud client
	c, err := jumpcloud.NewClient("api_key")
	
	// Get all usergroups
	g, err := c.GetAllUserGroups() 
}