Skip to main content
GET
/
oauth
/
jwks
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx();

const response = await client.oauth.retrieveJwks();

console.log(response.keys);
{
  "keys": [
    {
      "kty": "<string>",
      "use": "<string>",
      "alg": "<string>",
      "kid": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

JSON Web Key Set

keys
object[]