Overview
The Adminest API allows you to programmatically interact with documents, tasks, and other features. All API endpoints require authentication using JWT tokens from Auth0.Base URL
Authentication
All API requests require a valid JWT bearer token in the Authorization header:Request Format
- All request bodies should be JSON (
Content-Type: application/json) - File uploads use
multipart/form-data
Response Format
All responses are JSON with the following structure: Success Response:HTTP Status Codes
| Code | Description |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing token |
| 403 | Forbidden - Insufficient permissions |
| 404 | Not Found |
| 500 | Server Error |
Rate Limiting
API requests are rate limited to:- 100 requests per minute per user
- 1000 requests per hour per user
Quick Start
- Get an API token via Auth0 authentication
- Make a test request:
