Skip to content
Download OpenAPI description
Overview
License
Languages
Servers
Mock server
https://apidocs.trustgrid.io/_mock
https://api.trustgrid.io

Alarm

Alarm filters manage criteria and thresholds for what events generate alerts.

Operations
Operations

Agent

Agents run on consumer devices and have a subset of appliance functionality

Operations

Appliance

Appliances are Trustgrid nodes deployed either physically or as a virtual machine.

Operations
Operations
Operations

Domain

A domain provides a logical grouping of nodes inside an organization.

Operations

Tag

Tags allow grouping clusters and nodes for permissions and reporting.

Operations

Upgrade Manager

Nodes can be upgraded in bulk using the upgrade manager.

Operations
Operations
Operations
Operations

Audit

Audits are logged to keep track of user and system changes. Trustgrid exposes authentication audits, configuration changes, and flow logs

Operations

Group

Groups allow exposing ZTNA applications to users.

Operations
Operations

Retrieve all configured identity providers for user authentication

Request

Security
JWTAuthorizer
curl -i -X GET \
  https://apidocs.trustgrid.io/_mock/v2/idp \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/jsonArray [
clientIdstring
descriptionstring
namestring
uristring
uidstring
]
Response
application/json
[ { "clientId": "string", "description": "string", "name": "string", "uri": "string", "uid": "string" } ]

Configure a new identity provider for external user authentication

Request

Security
JWTAuthorizer
Bodyapplication/json
clientIdstring
descriptionstring
namestring
uristring
curl -i -X POST \
  https://apidocs.trustgrid.io/_mock/v2/idp \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "clientId": "string",
    "description": "string",
    "name": "string",
    "uri": "string"
  }'

Responses

OK

Response
No content

Configure OpenID Connect authentication settings for an identity provider

Request

Requires identity-providers::modify permission.

Security
JWTAuthorizer
Path
idpIDstringrequired

IDP ID

Bodyapplication/json

OpenID config

authEndpointstring

Auth endpoint

Example: "https://your-endpoint-url"
clientIdstring

Client ID

Example: "some-client-id"
issuerstring

Issuer

Example: "https://your-issuer-url"
secretstring

Client secret

Example: "some-client-secret"
tokenEndpointstring

Token endpoint

Example: "https://your-token-url"
userInfoEndpointstring

User info endpoint

Example: "https://your-user-info-url"
curl -i -X PUT \
  'https://apidocs.trustgrid.io/_mock/v2/idp/openid/{idpID}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "authEndpoint": "https://your-endpoint-url",
    "clientId": "some-client-id",
    "issuer": "https://your-issuer-url",
    "secret": "some-client-secret",
    "tokenEndpoint": "https://your-token-url",
    "userInfoEndpoint": "https://your-user-info-url"
  }'

Responses

OK

Response
No content
Operations
Operations
Operations

ServiceUser

Users who only have API access

Operations

User

All interactions with the Trustgrid API require a user.

Operations