Create trust relationship
Creates a trust relationship.
Body
Required
The trust relationship definition
-
name
string Required A name for the trust relationship
-
trust_by_default
boolean If this relationship is trusted by default by all deployments in the current environment.
-
account_ids
array[string] The ID of the accounts to trust by this relationship.
-
public_ca_cert
string Required The public CA certificate of the environment to trust
-
installation_id
string The installation ID of the environment to trust
POST
/platform/configuration/trust-relationships
curl \
--request POST https://{{hostname}}/api/v1/platform/configuration/trust-relationships \
--data '{"name":"string","trust_by_default":true,"account_ids":["string"],"public_ca_cert":"string","installation_id":"string"}'
Request examples
{
"name": "string",
"trust_by_default": true,
"account_ids": [
"string"
],
"public_ca_cert": "string",
"installation_id": "string"
}
Response examples (201)
# Headers
x-cloud-resource-version: string
x-cloud-resource-created: string
x-cloud-resource-last-modified: string
# Payload
{
"id": "string",
"name": "string",
"trust_by_default": true,
"account_ids": [
"string"
],
"local": true,
"installation_id": "string"
}
Response examples (400)
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (401)
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}