Files
Azeez Muibi 5f67e55e24 update
2025-04-15 17:19:07 +01:00

33 lines
924 B
JSON

{
"get": {
"tags": [
"Dashboard"
],
"summary": "Get dashboard data",
"description": "Retrieve summary data for the dashboard including loans, payments, request summary, and recent transactions",
"operationId": "getDashboard",
"security": [
{
"bearerAuth": []
}
],
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/DashboardResponse.json"
}
}
}
},
"401": {
"description": "Unauthorized"
},
"500": {
"description": "Internal server error"
}
}
}
}