GET
/
waap
/
v1
/
clients
/
me
import os
from gcore import Gcore

client = Gcore(
    api_key=os.environ.get("GCORE_API_KEY"),  # This is the default and can be omitted
)
client_info = client.waap.get_account_overview()
print(client_info.id)
{
  "id": 123,
  "service": {
    "enabled": true
  },
  "features": [
    "<string>"
  ],
  "quotas": {
    "number-of-domains": {
      "allowed": 5,
      "current": 1
    }
  }
}

Authorizations

APIKey
string
header
required

API key for authentication.

Response

200
application/json

Successful Response

Represents the WAAP service information for a client