Authentication
JSON Web Key Set
Return the public key set used by OAuth-compatible clients.
Overview
Use this endpoint only when your OAuth library needs the Notifyy public key set. Standard integrations that only call Public API endpoints usually do not need to call this endpoint directly. Authentication is not required.
GET
/oauth2/jwkscURL
GETbash
curl --request GET \ --url 'https://crm.notifyy.io/oauth2/jwks'Sample Request Body
This endpoint does not require a request body.
Sample Response
json
{ "keys": [ { "kty": "RSA", "use": "sig", "kid": "notifyy-public-api-key-1", "n": "public_rsa_modulus", "e": "AQAB" } ]}Status Codes
| Code | Description |
|---|---|
| 200 | Public JSON Web Key Set was returned. |
Response fields
keysarray
Public key records returned in the standard OAuth key-set format.
keys[].kidstring
Key identifier.
keys[].ktystring
Key type.
keys[].usestring
Key use.
keys[].algstring
Algorithm identifier.
keys[].nstring
Public key value.
keys[].estring
Public key exponent.
| Object | Description |
|---|---|
keys array | Public key records returned in the standard OAuth key-set format. |
keys[].kid string | Key identifier. |
keys[].kty string | Key type. |
keys[].use string | Key use. |
keys[].alg string | Algorithm identifier. |
keys[].n string | Public key value. |
keys[].e string | Public key exponent. |