Skip to main content
GET
/
v2
/
sandboxes
/
templates
List all SandboxTemplates
curl --request GET \
  --url https://api.example.com/v2/sandboxes/templates
{
  "templates": [
    {
      "name": "<string>",
      "image": "<string>",
      "resources": {
        "cpu": "500m",
        "memory": "512Mi",
        "storage": "1Gi"
      },
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "volume_mounts": [
        {
          "volume_name": "<string>",
          "mount_path": "<string>"
        }
      ],
      "proxy_config": {
        "rules": [
          {
            "name": "<string>",
            "match_hosts": [
              "<string>"
            ],
            "inject_headers": {},
            "match_paths": [
              "<string>"
            ],
            "enabled": true
          }
        ],
        "no_proxy": [
          "<string>"
        ]
      },
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Response

200 - application/json

Successful Response

Response model for listing SandboxTemplates.

templates
SandboxTemplateResponse · object[]
required