AAtlas CRM

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/jwks

cURL

GET
bash
curl --request GET \  --url 'https://crm.notifyy.io/oauth2/jwks'

Authorization

Not required

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

CodeDescription
200Public 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.