GET
/
storage
/
provisioning
/
v1
/
storage
curl --request GET \
  --url https://api.gcore.com/storage/provisioning/v1/storage \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "address": "<string>",
      "can_restore": true,
      "client_id": 123,
      "created_at": "<string>",
      "credentials": {
        "keys": [
          {
            "created_at": "<string>",
            "id": 123,
            "name": "<string>"
          }
        ],
        "s3": {
          "access_key": "<string>",
          "secret_key": "<string>"
        },
        "sftp_password": "<string>"
      },
      "custom_config_file": true,
      "deleted_at": "<string>",
      "disable_http": true,
      "expires": "<string>",
      "id": 123,
      "location": "s-ed1",
      "name": "<string>",
      "provisioning_status": "<string>",
      "reseller_id": 123,
      "rewrite_rules": {},
      "server_alias": "<string>",
      "type": "sftp"
    }
  ],
  "meta": {
    "ToMeta": {}
  }
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

offset
integer

Amount of records to skip before beginning to write in response.

limit
integer

Max number of records in response

order_by
string

Field name to sort by

order_direction
enum<string>

Ascending or descending order

Available options:
asc,
desc
id
string
name
string
location
string
type
string
status
string
show_deleted
boolean

Response

200
application/json

StorageListEndpointRes

The response is of type object.