...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "name": "auth", "description": "Authentication application", "conditions": [{ "type": "path", "deny": false, "lowercase": false, "values": ["/auth/*"] }], "conditions.type": "and", "location.enabled": true, "session.needed": true, "session.afterconditionsmatch": false, "session.override": false, "content.preload": false, "action": "serve", "response.compress": true, "cookiesnapper": {}, "plugin": {}, "webserver": { "path": "${ceptor.home}/auth", "case.sensitive": false, "directory.listing.enabled": false, "paths.canonicalize": true, "follow.links": false, "cache.enabled": true, "cache.changelistener": true, "response.notfound": { "response.status": 404, "response.reason": "Not found", "response.contenttype": "text/html; charset=utf8", "response.content": "<!DOCTYPE html>\n<html>\n<head><title>Not found<\/title><\/head>\n<body><h1>Not found :(<\/h1><\/body>\n<\/html>" } }, "urlrewrite": [{ "name": "remote_auth", "pattern": "/auth/(.*)", "newurl": "/$1", "decode.before.match": true, "clear.query.params": false, "redirect": false, "last": true }] }, |
CeptorAuthenticate API
The CeptorAuthenticate API is called by JavaScript in the authentication application running in the browser.
The API offers these features:
- Authenticate users using Multi Factor Authentication (MFA)
- Create new users using self-service
- Password reset
Below is the OpenAPI specification for this API:
...