-
Notifications
You must be signed in to change notification settings - Fork 2
28 Authorization
Преподобный Ален edited this page Feb 18, 2026
·
1 revision
Check whether a user session is authorized.
This endpoint verifies if the given session code corresponds to a valid, active, and authorized session.
POST /api/v1/authorizeRequest parameters:
| Field | Type | Description |
|---|---|---|
| session | STRING | Required. Session code. |
Response fields:
| Field | Type | Description |
|---|---|---|
| authorized | BOOLEAN | Authorization result: true if the session is valid and authorized, false otherwise. |
| message | STRING | Descriptive message (e.g., reason for denial). |
- Authentication -- authenticating with session and secret
- Sign In -- obtaining a session code
- Who Am I -- retrieving the profile of the authorized user
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