DNS_restoreDNSSnapshotV1
Revert a domain's DNS configuration to a previous state by restoring a specific DNS snapshot. Specify the domain and snapshot ID to roll back changes. Ideal for correcting misconfigurations or restoring prior settings.
Instructions
Restore DNS zone to the selected snapshot.
Use this endpoint to revert domain DNS to a previous configuration.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | Yes | Domain name | |
| snapshotId | Yes | Snapshot ID |
Implementation Reference
- types.d.ts:359-371 (schema)TypeScript interface definition specifying the input parameters (domain: string, snapshotId: number) and response type (any) for the DNS_restoreDNSSnapshotV1 API tool."DNS_restoreDNSSnapshotV1": { params: { /** * Domain name */ domain: string; /** * Snapshot ID */ snapshotId: number; }; response: any; // Response structure will depend on the API };