DNS Record Management

Note: The availability of these endpoints may vary depending on your WAYSCloud setup and permissions. Contact WAYSCloud support for details on how to manage DNS records through the API.

If DNS record management is available through the API, you might be able to use the following endpoints:

  • GET /api/dns-zones/<zone_uuid>/records/: List all DNS records within a specific DNS zone.
  • POST /api/dns-zones/<zone_uuid>/records/: Create a new DNS record within a specific DNS zone.
  • GET /api/dns-zones/<zone_uuid>/records/<record_uuid>/: Get details about a specific DNS record.
  • PUT /api/dns-zones/<zone_uuid>/records/<record_uuid>/: Update an existing DNS record.
  • PATCH /api/dns-zones/<zone_uuid>/records/<record_uuid>/: Partially update an existing DNS record.
  • DELETE /api/dns-zones/<zone_uuid>/records/<record_uuid>/: Delete a DNS record.

Important Notes:

  • You'll need the zone_uuid of the DNS zone, which you can obtain from the "List DNS Zone Resources" endpoint (5.2.2).
  • If available, the specific request and response formats for these endpoints will depend on the DNS management system used by WAYSCloud. Refer to the WAYSCloud API documentation or contact support for detailed information on how to use these endpoints.