Get the list of resource categories.
Samples
cURL
curl -X GET http://localhost/api/resources/categories
JavaScript
fetch("http://localhost/api/resources/categories")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/resources/categories");
Python
import requests
response = requests.get("http://localhost/api/resources/categories")
print(response.json())