GET
/
storage
/
provisioning
/
v2
/
key
curl --request GET \
  --url https://api.gcore.com/storage/provisioning/v2/key \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "created_at": "<string>",
      "id": 123,
      "name": "<string>"
    }
  ],
  "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
created
string

Response

200
application/json

KeyListEndpointRes

The response is of type object.