GET /v2/templates
Returns an array containing a list of existing operating systems.
{
"success":true,
"templates": [
{
"id":"$template_id",
"label":"$template_label",
"supports": [ // contents of the array varies depending on the system
"password",
"sshkey",
"cloudinit"
],
// 'owner' field exists if
// the template has been created by a user
"owner": {
"id": $owner_id,
"name": $owner_name
}
},
{ ... }
]
}