AAtlas CRM

Authentication

OAuth authorization server metadata

Discover Notifyy Public API OAuth configuration for automated clients and SDKs.

Overview

Use this endpoint when an OAuth client needs to read Notifyy Public API connection details automatically. Most integrations can use the token endpoint directly and do not need to call this endpoint. Authentication is not required.

GET/.well-known/oauth-authorization-server

cURL

GET
bash
curl --request GET \  --url 'https://crm.notifyy.io/.well-known/oauth-authorization-server'

Authorization

Not required

Sample Request Body

This endpoint does not require a request body.

Sample Response

json
{  "issuer": "https://crm.notifyy.io",  "token_endpoint": "https://crm.notifyy.io/oauth2/token",  "jwks_uri": "https://crm.notifyy.io/oauth2/jwks",  "grant_types_supported": [    "client_credentials"  ],  "token_endpoint_auth_methods_supported": [    "client_secret_basic"  ],  "scopes_supported": [    "contacts:read",    "contacts:write",    "templates:read",    "templates:write"  ]}

Status Codes

CodeDescription
200OAuth discovery metadata was returned.

Response fields

issuerstring

Notifyy OAuth service identifier.

Example: https://crm.notifyy.io

token_endpointstring

Endpoint used to request Public API access tokens.

Example: https://crm.notifyy.io/oauth2/token

jwks_uristring

Endpoint used by OAuth libraries for token validation.

Example: https://crm.notifyy.io/oauth2/jwks

grant_types_supportedstring[]

OAuth flows supported by Notifyy.

Example: ["client_credentials"]

token_endpoint_auth_methods_supportedstring[]

Authentication methods accepted by the token endpoint.

Example: ["client_secret_basic"]

scopes_supportedstring[]

Scopes available for Public API access.

Example: ["templates:write"]