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

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

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

Response

Successful Response

Represents the WAAP service information for a client

id
integer | null
required

The client ID

service
object
required

Information about the WAAP service status

features
string[]
required

List of enabled features

quotas
object
required

Quotas for the client

Examples:
{
"number-of-domains": { "allowed": 5, "current": 1 }
}