• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • 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.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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