System heartbeat / health check
curl --request GET \
--url https://my.propops.app/api/system/heartbeat \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": "operational",
"service": "PropOps Platform",
"version": "2.0.0",
"timestamp": "2024-06-01T12:00:00Z",
"uptime_seconds": 86400,
"environment": "production"
}Health & Status
System heartbeat / health check
Returns platform operational status. This endpoint does not require authentication and is suitable for uptime monitors.
Authentication: Optional.
GET
/
api
/
system
/
heartbeat
System heartbeat / health check
curl --request GET \
--url https://my.propops.app/api/system/heartbeat \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": "operational",
"service": "PropOps Platform",
"version": "2.0.0",
"timestamp": "2024-06-01T12:00:00Z",
"uptime_seconds": 86400,
"environment": "production"
}Documentation Index
Fetch the complete documentation index at: https://help.propops.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
All API requests must include a valid Bearer token in the Authorization header.
Tokens are 64-character SHA-256 session hashes issued by the PropOps authentication system.
Example:
Authorization: Bearer a1b2c3d4e5f6...⌘I