from gcore import Gcore
client = Gcore()
response = client.dns.get_account_overview()
print(response.client)
{
"Client": {
"client_id": 123,
"enabled": true,
"reseller": 123,
"status": "<string>",
"tariff_id": 123,
"tariff_name": "<string>"
},
"settings": {
"contact": "<string>",
"name_server_1": "<string>",
"name_server_2": "<string>"
}
}
Get info about client
from gcore import Gcore
client = Gcore()
response = client.dns.get_account_overview()
print(response.client)
{
"Client": {
"client_id": 123,
"enabled": true,
"reseller": 123,
"status": "<string>",
"tariff_id": 123,
"tariff_name": "<string>"
},
"settings": {
"contact": "<string>",
"name_server_1": "<string>",
"name_server_2": "<string>"
}
}
InfoResponse
Was this page helpful?