REST API - update

esx authentication trust security token issuers: update

Update an existing security token issuer trust.

Request:

HTTP request

PATCH https://{server}/api/esx/authentication/trust/security-token-issuers/{issuerAlias}
{
    "signing_cert_chains"[
        {
            "cert_chain"[
                "string",
                "string"
            ]
        },
        {
            "cert_chain"[
                "string",
                "string"
            ]
        }
    ],
    "issuer""string"
}

Body Parameters:

Name Type Description
bold = required
- update_spec The new settings.
-.issuer string Who created and signed the security token.

Optional. If unset, don't modify the issuer.

-.signing_cert_chains x509_cert_chain[] Token signing certificate chains.

Optional. If unset, don't modify the certificates.

-.signing_cert_chains[].cert_chain string[] Certificate chain in base64 format

Response:

HTTP Status Code: 204

Headers:

None

Type:

None

Errors:

HTTP Status Code Type Description
404 not_found if there is no security token issuer trust for the alias.
500 error if there is a problem storing the data.
400 invalid_argument if the esx.authentication.trust.security_token_issuers.update_spec argument contains invalid data.
401 unauthenticated if the user can not be authenticated.