https://github.com/ibm/platform-services-go-sdk
Go client library for IBM Cloud Platform Services
https://github.com/ibm/platform-services-go-sdk
cloud-computing global-search global-tagging go golang ibm ibm-cloud sdk sdk-go
Last synced: 2 months ago
JSON representation
Go client library for IBM Cloud Platform Services
- Host: GitHub
- URL: https://github.com/ibm/platform-services-go-sdk
- Owner: IBM
- License: apache-2.0
- Created: 2020-03-09T21:12:09.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2026-03-27T11:31:30.000Z (3 months ago)
- Last Synced: 2026-03-27T22:51:24.989Z (3 months ago)
- Topics: cloud-computing, global-search, global-tagging, go, golang, ibm, ibm-cloud, sdk, sdk-go
- Language: Go
- Homepage:
- Size: 6.08 MB
- Stars: 20
- Watchers: 23
- Forks: 68
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://github.com/IBM/platform-services-go-sdk/actions/workflows/build.yaml)
[](https://github.com/IBM/platform-services-go-sdk/releases/latest)
[](https://pkg.go.dev/github.com/IBM/platform-services-go-sdk)

[](https://opensource.org/licenses/Apache-2.0)
[](https://github.com/semantic-release/semantic-release)
[](https://cla-assistant.io/IBM/platform-services-go-sdk)
# IBM Cloud Platform Services Go SDK Version 0.97.0
Go client library to interact with various
[IBM Cloud Platform Service APIs](https://cloud.ibm.com/docs?tab=api-docs&category=platform_services).
## Table of Contents
- [Overview](#overview)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
* [Go modules](#go-modules)
* [`go get` command](#go-get-command)
- [Using the SDK](#using-the-sdk)
- [Questions](#questions)
- [Issues](#issues)
- [Open source @ IBM](#open-source--ibm)
- [Contributing](#contributing)
- [License](#license)
## Overview
The IBM Cloud Platform Services Go SDK allows developers to programmatically interact with the following IBM Cloud services:
Service Name | Package name
--- | ---
[Account Management](https://test.cloud.ibm.com/apidocs/account-management) | accountmanagementv4
[Activity Tracker](https://cloud.ibm.com/apidocs/atracker/atracker-v2) | atrackerv2
[Case Management](https://cloud.ibm.com/apidocs/case-management?code=go) | casemanagementv1
[Catalog Management](https://cloud.ibm.com/apidocs/resource-catalog/private-catalog?code=go) | catalogmanagementv1
[Context Based Restrictions](https://cloud.ibm.com/apidocs/context-based-restrictions?code=go) | contextbasedrestrictionsv1
[Enterprise Billing Units](https://cloud.ibm.com/apidocs/enterprise-apis/billing-unit?code=go) | enterprisebillingunitsv1
[Enterprise Management](https://cloud.ibm.com/apidocs/enterprise-apis/enterprise?code=go) | enterprisemanagementv1
[Enterprise Usage Reports](https://cloud.ibm.com/apidocs/enterprise-apis/resource-usage-reports?code=go) | enterpriseusagereportsv1
[Global Catalog](https://cloud.ibm.com/apidocs/resource-catalog/global-catalog?code=go) | globalcatalogv1
[Global Search](https://cloud.ibm.com/apidocs/search?code=go) | globalsearchv2
[Global Tagging](https://cloud.ibm.com/apidocs/tagging?code=go) | globaltaggingv1
[IAM Access Groups](https://cloud.ibm.com/apidocs/iam-access-groups?code=go) | iamaccessgroupsv2
[IAM Identity Service](https://cloud.ibm.com/apidocs/iam-identity-token-api?code=go) | iamidentityv1
[IAM Policy Management](https://cloud.ibm.com/apidocs/iam-policy-management?code=go) | iampolicymanagementv1
[IBM Cloud Shell](https://cloud.ibm.com/apidocs/cloudshell?code=go) | ibmcloudshellv1
[Logs Router](https://cloud.ibm.com/apidocs/logs-router-service-api/logs-router-v3?code=go) | logsrouterv3
[Metrics Router](https://cloud.ibm.com/apidocs/metrics-router/metrics-router-v3?code=go) | metricsrouterv3
[Open Service Broker](https://cloud.ibm.com/apidocs/resource-controller/ibm-cloud-osb-api?code=go) | openservicebrokerv1
[Partner Center Sell](https://test.cloud.ibm.com/apidocs/partner-center-sell?code=go) | partnercentersellv1
[Partner Management APIs](https://cloud.ibm.com/apidocs/partner-apis/partner?code=go) | partnermanagementv1
[Platform Notifications](https://cloud.ibm.com/apidocs/platform-notifications?code=go) | platformnotificationsv1
[Resource Controller](https://cloud.ibm.com/apidocs/resource-controller/resource-controller?code=go) | resourcecontrollerv2
[Resource Manager](https://cloud.ibm.com/apidocs/resource-controller/resource-manager?code=go) | resourcemanagerv2
[Usage Metering](https://cloud.ibm.com/apidocs/usage-metering?code=go) | usagemeteringv4
[Usage Reports](https://cloud.ibm.com/apidocs/metering-reporting?code=go) | usagereportsv4
[User Management](https://cloud.ibm.com/apidocs/user-management?code=go) | usermanagementv1
The following services have been relocated to a different SDK project.
Please consult the documentation for each service to determine the new location:
Service Name | Package name
--- | ---
[Configuration Governance](https://cloud.ibm.com/apidocs/security-compliance/config?code=go) | configurationgovernancev1
[Posture Management](https://cloud.ibm.com/apidocs/security-compliance/posture?code=go) | posturemanagementv1
## Prerequisites
[ibm-cloud-onboarding]: https://cloud.ibm.com/registration
* An [IBM Cloud][ibm-cloud-onboarding] account.
* An IAM API key to allow the SDK to access your account. Create one
[here](https://cloud.ibm.com/iam/apikeys).
* Go version 1.25 or above.
## Installation
The current version of this SDK: 0.97.0
### Go modules
If your application uses Go modules for dependency management (recommended), just add an import for each service
that you will use in your application.
Here is an example:
```go
import (
"github.com/IBM/platform-services-go-sdk/globalsearchv2"
)
```
Next, run `go build` or `go mod tidy` to download and install the new dependencies and update your application's
`go.mod` file.
In the example above, the `globalsearchv2` part of the import path is the package name
associated with the Global Search service.
See the service table above to find the approprate package name for the services used by your application.
### `go get` command
Alternatively, you can use the `go get` command to download and install the appropriate packages needed by your application:
```
go get -u github.com/IBM/platform-services-go-sdk/globalsearchv2
```
Be sure to use the appropriate package name from the service table above for the services used by your application.
## Using the SDK
For general SDK usage information, please see
[this link](https://github.com/IBM/ibm-cloud-sdk-common/blob/main/README.md)
## Questions
If you are having difficulties using this SDK or have a question about the IBM Cloud services,
please ask a question at
[Stack Overflow](http://stackoverflow.com/questions/ask?tags=ibm-cloud).
## Issues
If you encounter an issue with the project, you are welcome to submit a
[bug report](https://github.com/IBM/platform-services-go-sdk/issues).
Before that, please search for similar issues. It's possible that someone has already reported the problem.
## Open source @ IBM
Find more open source projects on the [IBM Github Page](http://ibm.github.io/)
## Contributing
See [CONTRIBUTING](CONTRIBUTING.md).
## License
The IBM Cloud Platform Services Go SDK is released under the Apache 2.0 license.
The license's full text can be found in [LICENSE](LICENSE).