Ploi API
Ploi API

List daemons

List all the daemons available in the server.

GET api/servers/{server}/daemons

Example request:

curl -X GET "https://ploi.io/api/servers/{server}/daemons" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

{
    "data": [
        {
            "id": 1,
            "command": "echo 123",
            "processes": 1,
            "system_user": "ploi",
            "directory": "/home/ploi",
            "status": "active"
        }
    ],
    "links": {
        "first": "https://ploi.io/api/servers/1/daemons?page=1",
        "last": "https://ploi.io/api/servers/1/daemons?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "« Previous",
                "active": false
            },
            {
                "url": "https://ploi.io/api/servers/1/daemons?page=1",
                "label": 1,
                "active": true
            },
            {
                "url": null,
                "label": "Next »",
                "active": false
            }
        ],
        "path": "https://ploi.io/api/servers/1/daemons",
        "per_page": 15,
        "to": 1,
        "total": 1
    }
}