Get Jwk Keys

Get Jwk Keys

This endpoint is responsible for fetching of the public certificate of a tenant in a JWK format.

Request
URI
GET
https://{api_host}//acs/t/{tenant}/jwks
COPY
Path Parameters
string
tenant
Required

The VMware Identity Services tenant ID

tenant example
my-tenant

Authentication
This operation uses the following authentication methods.
Responses
200

Public certificate in JWK format successfully returned.

Returns JwksMedia of type(s) application/jwk-set+json
{
    "keys": [
        {
            "crv": "string",
            "x": "string",
            "y": "string",
            "k": "string",
            "kty": "RSA",
            "kid": "1500075388",
            "use": "sig",
            "alg": "RS256",
            "e": "string",
            "n": "string"
        }
    ]
}
array of JwkTO
keys
Required

A collection of public JWK (JSON Web Key)


404

The JWKs were not found.

Operation doesn't return any data structure