• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved REST API: Unable to retrieve all databases via databases endpoint

Kaspar

API expert
Plesk Guru
Username:

TITLE


REST API: Unable to retrieve all databases via databases endpoint

PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

CentOS 7.9
Plesk 18.0.50

PROBLEM DESCRIPTION

In Plesk version .49 and lower it used to be possible to retrieve all databases with the REST API using the database endpoint. However when using the database endpoint in Plesk .50 without a domain filter the following error get returned:
JSON:
{
  "code": 0,
  "message": "Cannot create element with an empty name"
}

I couldn't find anything in the change log about this so I am not sure if this is a indented change or a bug (I am hoping for the latter). If it's by design it would be good to get it confirmed.

STEPS TO REPRODUCE

Run call via Plesk REST API to database endpoint without a domain filter. Like:
Code:
curl -X 'GET' \
  'https://server.hostname.plesk:8443/api/v2/databases' \
  -H 'accept: application/json' \
  -H 'authorization: Basic ABCDEFG='

Returns
JSON:
{
  "code": 0,
  "message": "Cannot create element with an empty name"
}

ACTUAL RESULT

Returns error

EXPECTED RESULT

Returns al list of all databases

ANY ADDITIONAL INFORMATION

(DID NOT ANSWER QUESTION)

YOUR EXPECTATIONS FROM PLESK SERVICE TEAM

Help with sorting out
 
Last edited:
@Strangelove are you sure? I just updated to 18.0.50.2 but when I run the API call I still get the same error as an response.

Call:
Code:
curl -X 'GET' \
  'https://server.hostname.plesk:8443/api/v2/databases' \
  -H 'accept: application/json' \
  -H 'authorization: Basic ABCDEFG='

Response:
Code:
{
  "code": 0,
  "message": "Cannot create element with an empty name"
}
 
Back
Top