GET
/
cdn
/
clients
/
{client_id}
/
features
Get CDN features details
curl --request GET \
  --url https://api.gcore.com/cdn/clients/{client_id}/features \
  --header 'Authorization: <api-key>'
{
  "id": 1,
  "paid_features": [
    {
      "feature_id": 1,
      "name": "Example 1"
    },
    {
      "feature_id": 2,
      "name": "Example 2",
      "paid_feature_id": 100,
      "create_date": "2021-01-01 00:00:00+00:00"
    }
  ],
  "free_features": [
    {
      "feature_id": 10,
      "name": "Free Example 1"
    },
    {
      "feature_id": 11,
      "name": "Free Example 2",
      "free_feature_id": 200,
      "create_date": "2021-01-01 00:00:00+00:00"
    }
  ]
}

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

Path Parameters

client_id
integer
required

Client account ID.

Response

200
application/json

Successful.

The response is of type object.