NoveuNOVEU
Terug naar Resources
Implementatie12 min leestijd

Integratie Gids

SSO, API en integratiemogelijkheden

Integratie Gids

Overzicht

Deze gids beschrijft de beschikbare integratiemogelijkheden van het Noveu platform.

Integratie Methoden

1. Single Sign-On (SSO)

SAML 2.0

Ondersteunde Identity Providers:

  • Azure Active Directory
  • Okta
  • Google Workspace
  • ADFS
  • Keycloak
  • Andere SAML 2.0 compliant IdPs

Configuratie:

<!-- Noveu SAML Metadata -->
<EntityDescriptor entityID="https://sso.noveu.eu/{tenant}">
  <SPSSODescriptor>
    <AssertionConsumerService
      Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"
      Location="https://sso.noveu.eu/{tenant}/acs"
    />
  </SPSSODescriptor>
</EntityDescriptor>

Vereiste Claims:

  • email (verplicht)
  • name of displayName
  • groups (optioneel, voor RBAC)

OIDC / OAuth 2.0

Ondersteunde flows:

  • Authorization Code + PKCE (aanbevolen)
  • Implicit (legacy)

Endpoints:

Authorization: https://auth.noveu.eu/{tenant}/authorize
Token:         https://auth.noveu.eu/{tenant}/token
UserInfo:      https://auth.noveu.eu/{tenant}/userinfo
JWKS:          https://auth.noveu.eu/{tenant}/.well-known/jwks

Scopes:

ScopeBeschrijving
openidRequired voor OIDC
profileNaam, avatar
emailE-mailadres
groupsGroepslidmaatschappen
offline_accessRefresh tokens

2. Directory Sync

LDAP/LDAPS

Gebruik: Synchronisatie van gebruikers en groepen vanuit Active Directory

Configuratie:

ParameterVoorbeeld
Serverldaps://dc.example.com:636
Base DNDC=example,DC=com
Bind UserCN=noveu-sync,OU=Service,DC=example,DC=com
User Filter(&(objectClass=user)(mail=*))
Group Filter(objectClass=group)
Sync Interval15 minuten

Gesynchroniseerde attributen:

  • sAMAccountName
  • mail
  • displayName
  • memberOf
  • telephoneNumber
  • department

SCIM 2.0

Endpoint: https://api.noveu.eu/{tenant}/scim/v2

Ondersteunde resources:

  • /Users
  • /Groups

Operaties:

  • POST (create)
  • GET (read)
  • PUT (replace)
  • PATCH (update)
  • DELETE (remove)

3. API Integratie

REST API

Base URL: https://api.noveu.eu/v1

Authenticatie:

  • Bearer token (OAuth 2.0)
  • API Key + Secret (service accounts)

Rate Limits:

TierRequests/minBurst
Basis60100
Pro300500
Enterprise1000+Custom

Voorbeeld Request:

curl -X GET "https://api.noveu.eu/v1/users" \
  -H "Authorization: Bearer {access_token}" \
  -H "Content-Type: application/json"

Response Format:

{
  "data": [...],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total": 150
  },
  "links": {
    "next": "https://api.../users?page=2"
  }
}

Webhooks

Beschikbare Events:

EventBeschrijving
user.createdNieuwe gebruiker
user.updatedGebruiker gewijzigd
user.deletedGebruiker verwijderd
message.receivedMail ontvangen
file.sharedBestand gedeeld
incident.createdSecurity incident

Webhook Payload:

{
  "event": "user.created",
  "timestamp": "2026-01-15T10:30:00Z",
  "data": {
    "id": "user-uuid",
    "email": "user@example.com",
    "name": "Example User"
  },
  "signature": "sha256=..."
}

4. Log Forwarding

SIEM Integratie

Ondersteunde formaten:

  • Syslog (RFC 5424)
  • JSON over HTTPS
  • CEF (Common Event Format)

Configuratie (Syslog):

Protocol: TCP/TLS
Port: 6514
Format: RFC 5424
Facility: LOCAL0

Log Types:

TypeInhoudVolume
AuthenticationLogin/logout eventsLaag
AuthorizationAccess decisionsMedium
AuditAdmin actionsLaag
SecurityThreats, anomaliesVariabel
ApplicationUser actionsHoog

5. Email Integratie

IMAP/SMTP

Instellingen:

ProtocolServerPortEncryptie
IMAPmail.noveu.eu993TLS
SMTPmail.noveu.eu587STARTTLS

CalDAV/CardDAV

Endpoints:

CalDAV:  https://dav.noveu.eu/{tenant}/calendar
CardDAV: https://dav.noveu.eu/{tenant}/contacts

EWS Compatibility

Voor Outlook clients:

Autodiscover: https://autodiscover.noveu.eu/autodiscover/autodiscover.xml
EWS: https://ews.noveu.eu/EWS/Exchange.asmx

6. File Storage

WebDAV

Endpoint: https://files.noveu.eu/{tenant}/webdav

Authenticatie: Basic + MFA of OAuth

S3-Compatible API

Endpoint: https://s3.noveu.eu

Operaties:

  • PutObject
  • GetObject
  • DeleteObject
  • ListBucket
  • Multipart Upload

Voorbeelden

Azure AD SSO Setup

  1. Azure Portal

    • Enterprise Applications → New Application
    • Add custom SAML application
    • Upload Noveu metadata
  2. Configureer Claims:

    user.mail → email
    user.displayname → name
    user.groups → groups
    
  3. Noveu Portal

    • Settings → Identity → Add SAML IdP
    • Upload Azure metadata
    • Map attributes
  4. Test:

    • Initiate login from Noveu
    • Verify redirect to Azure
    • Confirm user creation

ServiceNow Incident Bridge

// ServiceNow Script Include
function createNoveuIncident(data) {
    var restMessage = new sn_ws.RESTMessageV2();
    restMessage.setEndpoint('https://api.noveu.eu/v1/incidents');
    restMessage.setHttpMethod('POST');
    restMessage.setRequestHeader('Authorization', 'Bearer ' + getToken());
    restMessage.setRequestBody(JSON.stringify({
        title: data.short_description,
        severity: mapSeverity(data.priority),
        source: 'ServiceNow',
        reference: data.number
    }));
    return restMessage.execute();
}

Power Automate / Logic Apps

  1. Custom connector aanmaken met OpenAPI spec
  2. OAuth 2.0 connection configureren
  3. Actions beschikbaar:
    • Get users
    • Create user
    • Send mail
    • Create ticket

SDKs en Libraries

TaalPackageStatus
Pythonnoveu-sdkBeschikbaar
JavaScript@noveu/sdkBeschikbaar
C# / .NETNoveu.SDKIn ontwikkeling
Javanoveu-javaIn ontwikkeling

Python Voorbeeld:

from noveu import Client

client = Client(
    tenant="example",
    client_id="...",
    client_secret="..."
)

users = client.users.list(limit=100)
for user in users:
    print(user.email)

Troubleshooting

Common Issues

IssueOorzaakOplossing
SAML assertion invalidClock skewNTP synchronisatie
Token expiredShort lifetimeRefresh token gebruiken
403 ForbiddenInsufficient scopeControleer scopes
Rate limitedTe veel requestsExponential backoff

Debug Mode

Test mode voor integraties:

# Header toevoegen
X-Noveu-Debug: true

# Response bevat extra info:
X-Request-Id: uuid
X-Debug-Info: {...}

Support


Laatste update: Januari 2026
API versie: v1

Vragen over dit document?

Neem contact op voor implementatie advies of een persoonlijke demo.