Trustgrid Management API (1.0.0)

Download OpenAPI description
Overview
License unlicensed
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

Alert

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

Certificate

Operations

Cluster

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

Operations
Operations
Operations

KVM

Virtual machines

Operations

Repository

Container repository

Operations

Audit

Operations

Group

Groups allow exposing ZTNA applications to users.

Operations
Operations

Get all Identity Providers

Request

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" } ]

Create an identity provider

Request

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

Set OpenID settings for an IDP

Request

Requires identity-providers::modify permission.

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

Org

Operations

Order

Provision process management

Operations
Operations

ServiceUser

Users who only have API access

Operations

User

All interactions with the Trustgrid API require a user.

Operations