Question Database - Related to "domain" (API)

Haugli92

New Pleskian
Server operating system version
Ubuntu 22.04.5 LTS
Plesk version and microupdate number
18.0.66 Update #2
Hi,

Is it not possible to set "Related to" on a database through any of the APIs?

I've been debugging and reading through the documentation but haven't found anything about this.

1736583598689.png
 
What happened to this functionality? Is it implemented yet?

uservoice is not active anymore. Where are these kind of feature requests managed now? cannot find it on features.plesk.com
 
Hi, @tertek . The feature request in question had only 7 votes and was not prioritized for further evaluation after the migration off UserVoice due to low demand. Please feel free to submit a new request on features.plesk.com. I will re-propose it to our team.
 
Could you please try the following query and let me know if it works for you:

Code:
SELECT
    db.id,
    db.name AS database_name,
    db.type,
    db.dom_id,
    d.name AS domain
FROM data_bases AS db
LEFT JOIN domains AS d
    ON db.dom_id = d.id;
 
Back
Top