Hi,
I'm using `https://api.ovh.com/` to interact with OVH API for bare metal machines. Currently I would like to list servers and that works via `ck.add_recursive_rules(ovh.API_READ_ONLY, "/dedicated/server")` [Python]. However I cannot find a way to get our custom names of the servers. API lists for example:
```
=====> ns.ip—.eu () <=====
{
"bootId": 1,
"commercialRange": "ADVANCE-2",
"datacenter": "rbx7",
"ip": "…",
"linkSpeed": 1000,
"monitoring": true,
"name": "ns.ip—.eu",
"newUpgradeSystem": true,
"noIntervention": false,
"os": "ubuntu1804-server_64",
"professionalUse": false,
"rack": "",
"rescueMail": null,
"reverse": "ns.ip—.eu",
"rootDevice": null,
"serverId": ,
"state": "ok",
"supportLevel": "pro"
}
```
Above there is only OVH name, but above server in OVH web UI has our own custom name `andromeda123456.example.com`
Is there any way to get both, internal OVH name (`ns.ip—.eu`) and our own custom name?
Also, be able to update / rename it via API would be great too.
Regards.
Awesome! Thanks, it works like a charm.