Skip to content

Latest commit

 

History

History
executable file
·
22 lines (15 loc) · 445 Bytes

README.md

File metadata and controls

executable file
·
22 lines (15 loc) · 445 Bytes

Junos Space PHP API

A PHP API for interfacing with Junos Space through its REST API interface.

Examples

  • Get All Managed Devices
$space = new JunosSpace("192.168.0.100", "username", "password123!");

print_r($space->getDevices());
  • Execute GET REST call
$space = new JunosSpace("192.168.0.100", "username", "password123!");

print_r($space->get('/api/space/device-management/devices'));