Skip to main content
GET
/
cdn
/
admin
/
clients
/
{client_id}
Get client balancer settings
curl --request GET \
  --url https://api.gcore.com/cdn/admin/clients/{client_id} \
  --header 'Authorization: <api-key>'
{
  "is_in": true,
  "region_list": [
    1,
    2
  ]
}

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

Successful.

is_in
boolean

Defines whether regions are used for content delivery for a client or not.

Possible values:

  • true - Region is used for content delivery.
  • false - Region is not used for content delivery.
region_list
integer[]

List of region IDs.

If you specified regions used for content delivery, the regions IDs list must not contain the ID of the default location handler region.

If you specified regions not used for content delivery, the regions IDs list must contain the ID of the default location handler region.

I