POST /api/auth/token/
Content-Type: application/json
{
"username": "user",
"password": "pass"
}
Response:
{
"token": "9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b"
}
POST /api/equipment/log-use/
Authorization: Token <token>
Content-Type: application/json
{
"equipment_id": "123",
"hours": 2.5,
"technician_id": "456",
"notes": "Regular use"
}
POST /api/equipment/payment/
Authorization: Token <token>
Content-Type: application/json
{
"use_id": "789",
"payment_method": "cash",
"amount": 50.00
}
POST /api/resources/
Authorization: Token <token>
Content-Type: application/json
{
"type": "herb",
"quantity": 100,
"unit": "kg",
"location": "warehouse-1"
}
POST /api/resources/transfer/
Authorization: Token <token>
Content-Type: application/json
{
"resource_id": "123",
"to_location": "warehouse-2",
"quantity": 50
}
POST /api/boards/workflow/
Authorization: Token <token>
Content-Type: application/json
{
"name": "Herb Processing",
"stages": ["drying", "packaging", "storage"]
}
PUT /api/boards/stage/{stage_id}/
Authorization: Token <token>
Content-Type: application/json
{
"status": "completed",
"notes": "Process finished"
}
{
"detail": "Invalid token"
}
{
"detail": "Resource not found"
}
{
"error": "Invalid input",
"details": {
"field": ["Error message"]
}
}
- 1000 requests per hour per user
- Rate limit headers included in response:
X-RateLimit-Limit: 1000 X-RateLimit-Remaining: 999 X-RateLimit-Reset: 1609459200