Create empty volume
Creates a new empty volume of the specified size.
post/volumes
Request body
Example request
{
"id": "vol-data-1",
"name": "my-data-volume",
"size_gb": 10,
"tags": {
"team": "backend",
"env": "staging"
}
}Response
Volume created
Example response
{
"id": "vol-data-1",
"name": "my-data-volume",
"size_gb": 10,
"tags": {
"team": "backend",
"env": "staging"
},
"attachments": [
{
"instance_id": "inst-abc123",
"mount_path": "/mnt/data"
}
],
"created_at": "2025-01-15T09:00:00Z"
}