Маршруты

uri Controller Action Method
/ HomeController index GET
/tree HomeController showComputerTree GET
/softwares HomeController showSoftwaresList GET
/computers HomeController showComputersList GET
/routes HomeController getApiRoutes GET
/api/register AuthController register POST
/api/login AuthController login POST
/api/logout AuthController logout POST
/api/profile UserController profile GET
/api/users/{id} UserController singleUser GET
/api/users UserController allUsers GET
/api/v1 HomeController getApiVersion GET
/api/v1/downloads/classes-json JsonFileController classesJsonFileDownload GET
/api/v1/downloads/properties-json JsonFileController propertiesJsonFileDownload GET
/api/v1/classes WmiClassController showAllWmiClasses GET
/api/v1/classes/{id} WmiClassController showOneWmiClass GET
/api/v1/classes/{id}/properties WmiPropertyController showAllPropertiesOfWmiClass GET
/api/v1/classes/{id}/properties/{property} WmiPropertyController showOnePropertyOfWmiClass GET
/api/v1/computers ComputerController showSomeComputers GET
/api/v1/computers/{id} ComputerController showOneComputer GET
/api/v1/computers ComputerController create POST
/api/v1/computers/{id} ComputerController delete DELETE
/api/v1/computers/{id} ComputerController update PUT
/api/v1/computers/{id}/properties ComputerTreeController showAllPropertiesOfComputerTree GET
/api/v1/computers/{id}/properties/{class} ComputerPropertiesController showClassPropertiesOfComputer GET
/api/v1/computers/{id}/properties/{class}/{property} ComputerPropertiesController showOnePropertyOfComputer GET
/api/v1/computers/{id}/properties/{class}/{property} ComputerPropertiesController create POST
/api/v1/computers/{id}/properties/{class}/{property} ComputerPropertiesController delete DELETE
/api/v1/computers/{id}/classes/{class} ComputerPropertiesController deleteWmiClass DELETE
/api/v1/computers/{id}/properties/{class}/{property} ComputerPropertiesController update PUT
/api/v1/computer-name ComputerTreeController getComputerName GET
/api/v1/computers-list ComputerTreeController showSomeComputers GET
/api/v1/computers/{id}/hardware ComputerTreeController showAllPropertiesOfComputerDeviceTree GET
/api/v1/computers/{id}/software ComputerTreeController showAllPropertiesOfComputerSoftwareTree GET
/api/v1/reports/computers/properties/{property} ReportsController getComputersProperty GET
/api/v1/reports/computers/last_updated ReportsController getComputersUpdatedAt GET
/api/v1/reports/computers/list ReportsController getComputersList GET
/api/v1/reports/softwares/list ReportsController getSoftwaresList GET
/api/v1/reports/softwares/table SoftwareController createSoftwaresTable GET
/docs SwaggerLumeController docs GET
/api/documentation SwaggerLumeController api GET
/swagger-ui-assets/{asset} SwaggerLumeAssetController index GET
/api/oauth2-callback SwaggerLumeController oauth2Callback GET
Back to top