from gcore import Gcore
client = Gcore()
response = client.dns.get_account_overview()
print(response.info)
{
"Info": {
"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.info)
{
"Info": {
"contact": "<string>",
"name_server_1": "<string>",
"name_server_2": "<string>"
}
}
InfoResponse
The response is of type object
.
Was this page helpful?