Details on the various actions that can be performed on the Domains resource, including the expected parameters and the potential responses.
Fetches a list of all your domains
result = client.domains.get_domains()
puts result
Fetches a specific domain
result = client.domains.get_domain(domainId: my_domain_id)
puts result
This endpoint creates a private domain attached to your account. Note, the domain must be unique to the system and you must have not reached your maximum number of Private Domains.
result = client.domains.create_domain(domainId: my_domain_id)
puts result
This endpoint deletes a Private Domain
result = client.domains.delete_domain(domainId: my_domain_id)
puts result