<< Click to display Table of Contents >> Navigation: Interfaces > REST API > REST API via PHP-Script |
In this chapter, you will learn how to address the REST API interface with a PHP script. We will provide you with an example script that you can adapt as required to meet your requirements.
To make the script compatible with your installation, you must adjust the following variables:
This value describes the URL for the request. If bestinformed is installed on the local machine, for example, this is the appropriate URL.
$url = 'https://localhost:8431/rest'; |
This value specifies the REST API username, further information can be found in the chapter REST API > Authentication on the server.
$username = "rest_admin"; |
This value specifies the password of the REST API user, further information can be found in the chapter REST API > Authentication on the server.
$password = "cw"; |
This value describes the origin of the request, this must be identical to the allowed hosts in System (global), further information can be found in the chapter REST API > Request to the API interface.
$origin = "cordaware"; |
Here you define the action that the script executes. You can find all possible actions and further information in the chapter REST API > Examples.
$body = []; |
Script
In this example, an info is created with the following properties:
- The info is sent to all clients whose computer names begin with “DESKTOP-”.
- The info text is “I was sent using the REST API.”
- The info is active on the server for one minute and is displayed on the client for one minute.
|
<?php "action" => "newinfo", "info" => "I was sent using the REST API.", "minutes" => "1", "active" => "1", "quickusersonly" => "true", "quickusersadditional" => "false", "quickusers" => "[ { \"computer\": \"DESKTOP-*\", \"user\": \"*\", \"ipaddress\": \"*\", \"domain\": \"*\" } ]", ]; |
Tested with PHP version 8.4.4 and 8.2.12. The extension=curl must be activated.