REST API
Create integrations, retrieve data, and automate your workflows, build with the Gobo REST API.
https://api.gobo.io
API Tokens
Gobo authenticates your API requests using your tenant's API tokens. API requests made without authentication or using an incorrect token will return a403
error. All API requests must be made over HTTPS.
You can view and manage your API tokens in the Gobo Dashboard.
curl -H "Authorization: Token $GOBO_API_TOKEN" https://api.gobo.io/
Keep your Tokens Secure
API tokens can perform any action in your Gobo tenant. They must be kept secure and private. Be sure to prevent your API tokens from being made publicly accessible, such as in client-side code, GitHub, unsecured S3 buckets, and so forth. API Tokens are prefixed with gt_
.
Pagination
Gobo utilizes pagination for list operations. You can request a particular page number by passing the page
query parameter. Paginated responses return the following format:
{
"count": 816,
"next": "https://api.gobo.io/user/~/orgs?page=3",
"previous": "https://api.gobo.io/user/~/orgs",
"results": [
…
]
}
Endpoints
Last updated