Morf · Authentication Profile

Morf Authentication

Authentication

Morf secures its APIs with apiKey, oauth2, and openIdConnect across 4 declared security schemes, as derived from its OpenAPI definitions. OAuth 2.0 is offered via the authorizationCode flow(s).

CompanyHealthcareHealth ITAutomationIntegrationiPaaSWebhooksEHRPatient CommunicationHIPAAWorkflowDigital Health
Methods: apiKey, oauth2, openIdConnect Schemes: 4 OAuth flows: authorizationCode API key in: header, query

Security Schemes

ApiKey apiKey
· in: header ()
SiteKey apiKey
· in: query ()
OAuth2 oauth2
· flows: authorizationCode
OpenIDConnect openIdConnect

Source

Authentication Profile

morf-authentication.yml Raw ↑
generated: '2026-07-20'
method: searched
source: https://docs.morf.health/ + https://auth.morf.health/.well-known/openid-configuration
docs: https://docs.morf.health/
summary:
  types: [apiKey, oauth2, openIdConnect]
  api_key_in: [header, query]
  oauth2_flows: [authorizationCode]
schemes:
- name: ApiKey
  type: apiKey
  in: header
  parameter_name: API-Key
  description: >-
    Primary server-to-server credential. Issued from the Morf Editor (request
    access keys — you are granted one site key and one API key). Sent in the
    API-Key request header. Keys are environment-scoped (sandbox vs live Morf
    environment).
- name: SiteKey
  type: apiKey
  in: query
  parameter_name: siteKey
  description: >-
    Publicly embeddable key passed as the siteKey query-string parameter. Meant
    for client-side/public contexts only; the docs warn it must NOT be used to
    access protected API services because it is designed to be public, unlike
    the API key.
- name: OAuth2
  type: oauth2
  flows:
  - flow: authorizationCode
    authorizationUrl: https://dashboard.morf.health/authorize
    tokenUrl: https://auth.morf.health/v1/oauth2/token
    registrationUrl: https://auth.morf.health/v1/oauth2/register
    scopes_count: 6
  sources: [well-known/morf-oauth-authorization-server.json]
- name: OpenIDConnect
  type: openIdConnect
  openIdConnectUrl: https://auth.morf.health/.well-known/openid-configuration
  issuer: https://auth.morf.health
  userinfo_endpoint: https://auth.morf.health/v1/oauth2/userinfo
  jwks_uri: https://auth.morf.health/.well-known/jwks.json
  id_token_signing_alg: RS256
  pkce: [S256]
  sources: [well-known/morf-openid-configuration.json]
notes: >-
  Auth model derived from published Morf docs and live OAuth/OIDC discovery
  documents (no OpenAPI securitySchemes were retrievable — the API host returns
  415 to unauthenticated spec requests). token_endpoint_auth_methods:
  client_secret_basic, client_secret_post, none.