List Elastic IPs

List all elastic ips

List URL:

GEThttps://api.hyperleaf.com/api/elasticips/list

Get Example

curl https://api.hyperleaf.com/api/elasticips/list?key=mykey

Response Examples

{
    "status": "ok",
    "count": 2,
    "data": [
        {
            "ip": "207.1.2.2",
            "description": "savedfor1",
            "vm_uuid": "87c1-1c63-a91f-1eaf-498cb0af251c-207.1.2.2-ubuntu22",
            "created_date": "2023-06-09 22:53:15"
        },
        {
            "ip": "207.1.2.2",
            "description": "vpn-ui",
            "vm_uuid": null,
            "created_date": "2023-06-09 12:53:15"
        },
    ]
}
circle-info

vm_uuid

When the vm_uuid is set to null, this means that the elastic ip is unassigned.

Last updated