-
Notifications
You must be signed in to change notification settings - Fork 2
24 Sign Out
Преподобный Ален edited this page Feb 18, 2026
·
1 revision
Log out of the system and close the session.
POST /api/v1/sign/outRequest parameters:
| Field | Type | Description |
|---|---|---|
| session | STRING | Required. Session code. |
| close_all | BOOLEAN |
Optional. Close all active sessions for the current user. Default: false. |
Behavior:
- When
close_allisfalse(default), only the session specified in thesessionparameter is closed. - When
close_allistrue, all active sessions for the user associated with the given session are closed.
Example:
Request:
POST /api/v1/sign/out HTTP/1.1
Host: localhost:8080
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.[abbreviated]...
{"session": "149d2ae6fa3f82eda21f7dba21824f199d508343"}Close all sessions:
POST /api/v1/sign/out HTTP/1.1
Host: localhost:8080
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.[abbreviated]...
{"session": "149d2ae6fa3f82eda21f7dba21824f199d508343", "close_all": true}- Sign In -- logging in to the system
- Authorization (OAuth 2.0) -- token-based authorization
Concepts
API Guide
Authentication & Session
- Connection
- Registration
- Authorization (OAuth 2.0)
- Sign In
- Sign Out
- Password Recovery
- Verification Codes
- Authentication
- Authorization
- Who Am I?
Core Services
Object & Workflow Endpoints
Schema & Internals
Configuration Developer Guide
- Configuration Guide
- Creating an Entity
- Creating a Document
- Creating a Reference
- Workflow Customization
- REST Endpoint Guide
- Event Handler Guide
Operations