v1
latestOpenAPI 3.1.02026-07-2676123203.9 KBNetwork Volumes
Create a network volume
Provisions a new network volume — persistent, network-attached storage that can be mounted into pods and serverless workers. Required inputs are name, size (in GB), and dataCenter; an optional type selects the storage tier and is immutable after creation. See CreateNetworkVolumeRequest for the size bounds and tier options.
This creates a billable persistent resource that keeps incurring storage charges until it is deleted. Returns 201 with the created network volume, including its assigned id.
post/v2/network-volumes
Request body
Example request
{
"name": "my-dataset",
"size": 50,
"dataCenter": "EU-RO-1"
}Response
Created
Example response
{
"dataCenterId": "EU-RO-1",
"id": "agv6w2qcg7",
"name": "my network volume",
"size": 50
}