Skip to main content
GET
/
fastedge
/
v1
/
admin
/
clients
List clients
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/admin/clients \
  --header 'Authorization: <api-key>'
{
  "clients": [
    {
      "id": 123,
      "name": "<string>",
      "email": "<string>"
    }
  ],
  "count": 123
}

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

name
string

Filter by client name (case-insensitive partial match)

Required string length: 1 - 255
email
string

Filter by client e-mail address (case-insensitive partial match)

Required string length: 3 - 320
group__incl
integer<int64>

Filter by group ID (shows clients that belong to this group)

Required range: x >= 1
client_id
integer<int64>

Filter by client ID

Required range: x >= 1
group__excl
integer<int64>

Filter by group ID (shows clients that don't belong to this group)

Required range: x >= 1
limit
integer
default:50

Maximum number of results to return

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of results to skip for pagination

Required range: x >= 0

Response

Returns paginated list of clients

clients
object[]
required
count
integer
required

Total number of clients matching the filters