getStorageStatus
GET
/api/v1/storage
const url = 'https://example.com/api/v1/storage';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/storageResponses
Section titled “ Responses ”OK
Media typeapplication/json
object
driver
required
string
error
string
healthy
required
The result of a put, get and delete round trip.
boolean
key
additional properties
any
Example
{ "driver": "postgres"}default
Section titled “default”Error
Media typeapplication/json
object
error
required
object
code
required
string
details
message
required
string
key
additional properties
any
key
additional properties
any
Examplegenerated
{ "error": { "code": "example", "details": "example", "message": "example" }}