Jwks (iam/v2)

Refresh a provider's JWKS

General Availability

Make a request to refresh the provider's JWKS

patch/iam/v2/identity-providers/{provider_id}/jwks

Path parameters

provider_idstring required

The Provider

Request body

api_version'iam/v2'

APIVersion defines the schema version of this representation of a resource.

kind'Jwks'

Kind defines the object this REST resource represents.

Example request

{
  "spec": {
    "jwks_status": "REFRESHED"
  },
  "status": {
    "jwks_status": "REFRESHED",
    "jwks_last_refresh_at": "2006-01-02T15:04:05-07:00"
  }
}

Response

Jwks.

api_version'iam/v2' required

APIVersion defines the schema version of this representation of a resource.

kind'Jwks' required

Kind defines the object this REST resource represents.

Example response

{
  "spec": {
    "jwks_status": "REFRESHED"
  },
  "status": {
    "jwks_status": "REFRESHED",
    "jwks_last_refresh_at": "2006-01-02T15:04:05-07:00"
  }
}

Changes