Return list of all volumes.
If successful, this endpoint will return a 200 OK status.
The following arguments are supported for this endpoint.
| Name | Type | Default Value |
|---|---|---|
|
backend Required |
Backend Lookup | None |
|
page |
Integer | 1 |
|
per_page |
Integer | 30 |
The following errors may occur during this request.
| Details | HTTP status |
|---|---|
|
Request to backend API failed to establish a connection |
504 Gateway Timeout |
|
Received an unexpected response from backend API |
500 Internal Server Error |
|
No backend was found matching any of the criteria provided in the arguments |
404 Not Found |
|
Request to backend API timed out |
504 Gateway Timeout |
When the request is successful, you can expect an object matching the specification below to be returned.
{ pagination: Pagination Details { current_page: Integer total_pages: Integer? total: Integer? per_page: Integer large_set: Boolean } volumes: [ Volume { id: VolumeId path: String? allowed_hosts: [ IPv4Address? ] size_limit: Integer? used_bytes: Integer? } ] }