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>"
}
]
}List all SandboxTemplates in the tenant’s sandbox namespace.
This endpoint queries the database for fast performance.
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>"
}
]
}Successful Response
Response model for listing SandboxTemplates.
Show child attributes
Was this page helpful?