Redfish API
SmartForge implements the DMTF Redfish specification v1.19.0 for industry-standard RESTful manageability.
Features
- DMTF Standard: Full Redfish compliance
- RESTful: Standard HTTP methods
- JSON: Human-readable responses
- Tool Support: Works with existing Redfish tools
Base URL
http://localhost:8080/redfish/v1
Quick Example
# Get service root
curl http://localhost:8080/redfish/v1/
# Get system information
curl http://localhost:8080/redfish/v1/Systems/1
# Power on system
curl -X POST http://localhost:8080/redfish/v1/Systems/1/Actions/ComputerSystem.Reset \
-H "Content-Type: application/json" \
-d '{"ResetType": "On"}'
See the full API reference for complete details.