Query parameters
-
include_certificate boolean
Whether to include the public CA certificates in the response.
Default value is
false
. -
filter string
Which trust relationships to return in the response. Defaults to
all
Values are
all
,local
, ornon-local
. Default value isall
.
GET /platform/configuration/trust-relationships
curl \
-X GET https://{{hostname}}/api/v1/platform/configuration/trust-relationships
Response examples (200)
{
"trust_relationships": [
{
"id": "string",
"name": "string",
"trust_by_default": true,
"account_ids": [
"string"
],
"public_ca_cert": "string",
"local": true,
"installation_id": "string",
"last_modified": "2024-05-04T09:42:00+00:00"
}
]
}
Response examples (401)
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}