Skip to main content

GET /resources

PRO

The functionality is available in PRO Edition only

Description

Gets data on resources

The route handles the HTTP GET request made to the /resources path.

Payload

No payload is required.

Response

The server returns a JSON array with data on resources. See parameters description here: resources.

Example:

[
{
"id": 100,
"name": "Development Team",
"parent": 0
},
{
"id": 101,
"name": "Laura Turner",
"role": "Developer",
"color": "#4CAF50",
"parent": 100
}
]

The HTTP status code shows whether the request succeeds (status 200) or fails (status 500).


Related article: Working with server