GET
/
cloud
/
v1
/
users
curl --request GET \
  --url https://api.gcore.com/cloud/v1/users \
  --header 'APIKey: <api-key>'
{
  "count": 1,
  "results": [
    {
      "activated": true,
      "email": "johnsmith@gmail.com",
      "id": 123,
      "is_admin": true,
      "name": "John"
    }
  ]
}

Authorizations

APIKey
string
header
required

API key for authentication.

Query Parameters

limit
integer
default:1000

Limit the number of returned items. Falls back to default of 1000 if not specified. Limited by max limit value of 1000

Required range: 0 < x <= 1000
Examples:

100

offset
integer
default:0

Offset value is used to exclude the first set of records from the result

Required range: x >= 0
Examples:

0

user_id
integer

User ID for filtering

Examples:

123

Response

200 - application/json

OK

The response is of type object.