Experimental
ListVolumes lists volumes in the caller's owner scope.
/v1/volumes ListVolumes lists volumes in the caller's owner scope.
Returns unimplemented when this operation is unavailable. Support does not grant permission.
Connection and access
API connection and authentication guidance
https://connect.docker.com/sandboxes
—
The API base URL. Append the /v1 paths while preserving this URL's path prefix.
Use one of these alternatives. Requirements within an alternative apply together.
bearer
Parameters
pageSize
query
page_size is an optional page size.
Omitted or zero uses the backend default. Unless the operation states otherwise, page-size limits and handling of larger requests are backend-specific; use the backend support guide. Continue with nextPageToken until it is empty.
Type:
integer
All schema constraints and annotations
{
"title": "page_size",
"type": "integer"
}pageToken
query
Type:
string
All schema constraints and annotations
{
"title": "page_token",
"type": "string"
}filter
query
Type:
string
All schema constraints and annotations
{
"title": "filter",
"type": "string"
}orderBy
query
Type:
string
All schema constraints and annotations
{
"title": "order_by",
"type": "string"
}Request and responses
Response
200
application/json
Schema:
ListVolumesResponse
Response
501
application/json
Schema:
Error
unimplemented
{
"code": "unimplemented",
"message": "This operation is not available on this service."
}Response
default
application/json
Schema:
Error
Schema example
{
"code": "notFound",
"details": [],
"message": "sandbox not found"
}Referenced schemas
#/components/schemas/ListVolumesResponse
Complete operation contract
{
"description": "ListVolumes lists volumes in the caller's owner scope.\n\nReturns unimplemented when this operation is unavailable. Support does not grant permission.",
"operationId": "listVolumes",
"parameters": [
{
"description": "page_size is an optional page size.\n\nOmitted or zero uses the backend default. Unless the operation states otherwise, page-size limits and handling of larger requests are backend-specific; use the backend support guide. Continue with nextPageToken until it is empty.",
"in": "query",
"name": "pageSize",
"required": false,
"schema": {
"title": "page_size",
"type": "integer"
}
},
{
"description": "page_token is an opaque continuation token.",
"in": "query",
"name": "pageToken",
"required": false,
"schema": {
"title": "page_token",
"type": "string"
}
},
{
"description": "filter is comma-separated exact-match field=value terms; the portable fields are\nname, display_name and uid.",
"in": "query",
"name": "filter",
"required": false,
"schema": {
"title": "filter",
"type": "string"
}
},
{
"description": "order_by is a single order field with optional direction; the portable fields are\ncreated_at and name.",
"in": "query",
"name": "orderBy",
"required": false,
"schema": {
"title": "order_by",
"type": "string"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListVolumesResponse"
}
}
},
"description": "Success"
},
"501": {
"content": {
"application/json": {
"examples": {
"unimplemented": {
"summary": "This operation is not available on this service.",
"value": {
"code": "unimplemented",
"message": "This operation is not available on this service."
}
}
},
"schema": {
"$ref": "#/components/schemas/Error"
}
}
},
"description": "This operation is not available on this service."
},
"default": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
},
"description": "The structured Error body identifies the failure with a stable code and optional typed details."
}
},
"security": [
{
"bearer": []
}
],
"summary": "ListVolumes lists volumes in the caller's owner scope.",
"tags": [
"Volumes"
],
"x-sbx-authenticated-only": false,
"x-sbx-conditional-permissions": [],
"x-sbx-error-responses": [
{
"code": "UNIMPLEMENTED",
"description": "This operation is not available on this service."
}
],
"x-sbx-plane": "control",
"x-sbx-required-permissions": [
"volumesRead"
],
"x-sbx-serving-surface": "management"
}