curl --request GET \
--url https://iaas-api.liara.ir/vm \
--header 'Authorization: Bearer <token>'{
"vms": [
{
"_id": "<string>",
"plan": "<string>",
"OS": "<string>",
"state": "CREATED",
"name": "<string>",
"createdAt": "<string>",
"power": "POWERED_ON"
}
]
}get all vms that user owns
curl --request GET \
--url https://iaas-api.liara.ir/vm \
--header 'Authorization: Bearer <token>'{
"vms": [
{
"_id": "<string>",
"plan": "<string>",
"OS": "<string>",
"state": "CREATED",
"name": "<string>",
"createdAt": "<string>",
"power": "POWERED_ON"
}
]
}