Skip to main content

Profile_List_Response

statusboolean

Whether the request succeeded.

Example: true
messagestring

Human-readable description of the result.

Example: Getting profiles success.
profiles object[]

Profiles returned by the request.

  • Array [
  • idinteger

    Unique numeric identifier for the profile.

    Example: 1402
    namestring

    Name of the profile.

    Example: new-profile
    descriptionstring

    Description of the profile.

    Example: example
    datastring

    Virtual machine configuration saved in the profile.

    Example: {"name": "focused-tesla", "environment_name": "default-NORWAY-1", "image_name": "Ubuntu Server 22.04 LTS R535 CUDA 12.2", "volume_name": "", "flavor_name": "n1-cpu-large", "assign_floating_ip": false, "security_rules": [], "key_name": "example-key", "user_data": "", "labels": [], "count": 1}
    created_atstring<date-time>

    ISO 8601 UTC timestamp marking when the profile was created.

    Example: 2026-05-06T16:04:09Z
  • ]
  • Profile_List_Response
    {
    "status": true,
    "message": "Getting profiles success.",
    "profiles": [
    {
    "id": 1402,
    "name": "new-profile",
    "description": "example",
    "data": "{\"name\": \"focused-tesla\", \"environment_name\": \"default-NORWAY-1\", \"image_name\": \"Ubuntu Server 22.04 LTS R535 CUDA 12.2\", \"volume_name\": \"\", \"flavor_name\": \"n1-cpu-large\", \"assign_floating_ip\": false, \"security_rules\": [], \"key_name\": \"example-key\", \"user_data\": \"\", \"labels\": [], \"count\": 1}",
    "created_at": "2026-05-06T16:04:09Z"
    }
    ]
    }