Retrieve the configuration details of a specific OIDC issuer in Vultr IAM. View the issuer URL, audience, and metadata through the Vultr IAM API endpoint.
Retrieving an OIDC issuer returns its full configuration, including the registered public key components and source type. This is useful for verifying the issuer setup or confirming the registered JWK details.
This guide explains how to retrieve an OIDC issuer using the Vultr API.
Send a GET request to the List OIDC Issuers endpoint to retrieve all issuers.
$ curl "https://api.vultr.com/v2/oidc/issuer" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Note the id of the issuer you want to retrieve.
Send a GET request to the Read OIDC Issuer endpoint. Replace {issuer-id} with the issuer id.
$ curl "https://api.vultr.com/v2/oidc/issuer/{issuer-id}" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
The response contains the resource details.