List a WordPress install's themes.
curl -X POST https://{SERVER_IP}/installs/1234567890abcdefghij12345/themes \
-H 'X-API-KEY: {the key= or key2= value from /usr/local/installatron/etc/settings.ini}' \
-H 'X-HTTP-Method-Override: GET' \
-H 'Accept: application/json'
{
"status": 200,
"result": true,
"message": "The task is complete.\n",
"total_count": 1,
"has_more": false,
"data": [
{
"id": "twentytwentyfour",
"activated": true,
"autoup": "none",
"version": "3.4",
"name": "Twenty Twenty-Four",
"description": null,
"author": "the WordPress team",
"version_available": null
},
{
"id": "twentytwentyfive",
"activated": true,
"autoup": "none",
"version": "1.2",
"name": "Twenty Twenty-Five",
"description": null,
"author": "the WordPress team",
"version_available": null
},
]
}