• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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