Overview
Complete API reference for CONTROL API with 66 endpoints across 30 categories.
Version: v1
Base URL: https://control.zequenze.com/api/v1
Zequenze CONTROL 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
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://control.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