• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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