Before you can use the GBG GO API, you must authenticate your request. This involves exchanging your credentials for an access token.Documentation Index
Fetch the complete documentation index at: https://docs.go.gbgplc.com/llms.txt
Use this file to discover all available pages before exploring further.
What you need
Before requesting an access token, make sure you have the following API credentials:- Client ID: Identifies your organization.
- Client secret: A secure key linked to your Client ID.
- Username: The API username provided for your account.
- Password: A temporary password set during account creation (must be changed before use).
You receive these credentials from your GBG account manager.
Request an access token
To get your access token, send aPOST request to the endpoint.
You can send a request like this:
BASH
JSON
FAQ
What is the authentication URL and how do I get a token?
What is the authentication URL and how do I get a token?
To authenticate, send a The request must be sent with the following parameters:
Example request:A successful response returns:Include the token in the
POST request to the token endpoint:JSON
| Parameter | Description |
|---|---|
client_id | The client ID. |
client_secret | The client secret. |
username | Your API username. |
password | Your API password. |
grant_type | Set to password. |
BASH
Authorization header of subsequent API request as Bearer your-access-token. Store the token securely and refresh it before it expires.You can obtain your API credentials (client ID, client secret, username, and temporary password) from your GBG account manager.I forgot my password or username. How do I reset it?
I forgot my password or username. How do I reset it?
If you have forgotten your password:
- Go to the GBG GO sign-in page.
- Click Forgot your password? on the login screen.
- Check your email for a recovery code and enter it in the recovery code field.
- Enter a new password and confirm it.
- Click Change Password to save your new password.