Volumes /
Update volume
Update volume mounts and storage size
Required permission
Project > Volumes > General > Update
Path parameters
projectId
string requiredID of the projectvolumeId
string requiredID of the volume
Request body
- {object}
mounts
[array]Array of mounts, containerMountPaths must be unique- {object}
volumeMountPath
stringOptionally specify the path inside this volume that should be mountedpattern^((?!\.\.).)*$containerMountPath
string requiredSpecify the path into which the volume should be mountedpattern^((?!:).)*$spec
{object}
Response body
- {object}Response object.
data
{object} requiredResult data.
API
CLI
JS Client
POST /v1/projects/{projectId}/volumes/{volumeId}
Example request
Request body
curl
curl --header "Content-Type: application/json" \
--header "Authorization: Bearer NORTHFLANK_API_TOKEN" \
--request POST \
--data '{"mounts":[{"volumeMountPath":"","containerMountPath":"/container"}],"spec":{"storageSize":4096}}' \
https://api.northflank.com/v1/projects/{projectId}/volumes/{volumeId}
Example response
200 OK
The operation was performed successfully.
JSON
{
"data": {}
}