GET
/
iam
/
admin
/
free_features
/
{activatedFeatureId}
Get free feature's details
curl --request GET \
  --url https://api.gcore.com/iam/admin/free_features/{activatedFeatureId} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "client_id": 123,
  "feature_id": 123,
  "feature": {
    "id": 123,
    "name": "<string>",
    "service": "CDN",
    "is_free": true
  },
  "created_date": "2023-11-07T05:31:56Z"
}

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

activatedFeatureId
integer
required

Activated feature's ID.

Response

200
application/json

OK.

The response is of type object.