Overview
Complete API reference for GATE API with 45 endpoints across 20 categories.
Version: v1
Base URL: https://gate.zequenze.com/api/v1
Zequenze GATE platform API documentation
Authentication
All API endpoints require authentication using a Bearer token in the request header:
Authorization: Bearer <your-api-token>
You can obtain your API token from the portal administration panel.
Available Endpoints
| Category | Endpoints | Methods |
|---|---|---|
| Aaa Accounting | 2 | GET |
| Aaa Profile | 6 | DELETE GET PATCH POST PUT |
| Device App Access Devices | 1 | GET |
| Device App Access Points | 1 | GET |
| Device App Connection Log | 1 | POST |
| Device App Connection Summary | 1 | GET |
| Device App Locations | 1 | GET |
| Device App Register | 1 | POST |
| Device App Test Report | 1 | POST |
| Device App User Authenticate | 1 | POST |
| Device App User Update | 1 | POST |
| Hostspot Access Points | 1 | GET |
| Hostspot Locations | 1 | GET |
| Me | 1 | GET |
| Organization | 1 | GET |
| Portal Login | 1 | POST |
| Txlog Portal | 1 | GET |
| User | 10 | DELETE GET PATCH POST PUT |
| User Extra | 6 | DELETE GET PATCH POST PUT |
| User Token | 6 | DELETE GET PATCH POST PUT |
All Endpoints
Quick Start
1. Authentication
Obtain your API token from the portal and include it in all requests.
2. Make a Request
curl -X GET "https://gate.zequenze.com/api/v1/endpoint/" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json"
3. Handle the Response
All responses are in JSON format. List endpoints include pagination.
Response Codes
| Code | Status | Description |
|---|---|---|
| 200 | OK | Request successful |
| 201 | Created | Resource created successfully |
| 204 | No Content | Request successful (DELETE operations) |
| 400 | Bad Request | Invalid request parameters |
| 401 | Unauthorized | Missing or invalid authentication token |
| 403 | Forbidden | Insufficient permissions |
| 404 | Not Found | Resource not found |
| 500 | Server Error | Internal server error |
Pagination
List endpoints return paginated results:
{
"count": 150,
"next": "https://api.example.com/endpoint/?offset=50",
"previous": null,
"results": [...]
}
Use limit and offset query parameters to navigate through results.
No comments to display
No comments to display