pydo.domains.create()
Generated on 29 Apr 2025
from pydo
version
v0.10.0
Description
To create a new domain, send a POST request to /v2/domains
. Set the “name”
attribute to the domain name you are adding. Optionally, you may set the
“ip_address” attribute, and an A record will be automatically created pointing
to the apex domain.
Request Sample
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
req = {
"name": "example.com"
}
resp = client.domains.create(body=req)
More Information
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.