Microsoft Dynamics NAV · Schema
RestoreEnvironmentRequest
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| EnvironmentName | string | Name of the new restored environment |
| EnvironmentType | string | Type of the new environment |
| PointInTime | string | Point in time to restore to (ISO 8601 UTC) |
| SkipInstallingPTEs | boolean | Whether to uninstall per-tenant extensions |
| SkipInstallingThirdPartyGlobalApps | boolean | Whether to uninstall third-party AppSource apps |
| SkipEnvironmentCleanup | boolean | Whether to skip execution of cleanup codeunits |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RestoreEnvironmentRequest",
"title": "RestoreEnvironmentRequest",
"type": "object",
"required": [
"EnvironmentName",
"EnvironmentType",
"PointInTime"
],
"properties": {
"EnvironmentName": {
"type": "string",
"description": "Name of the new restored environment",
"example": "example_value"
},
"EnvironmentType": {
"type": "string",
"description": "Type of the new environment",
"enum": [
"Production",
"Sandbox"
],
"example": "Production"
},
"PointInTime": {
"type": "string",
"format": "date-time",
"description": "Point in time to restore to (ISO 8601 UTC)",
"example": "2026-01-15T10:30:00Z"
},
"SkipInstallingPTEs": {
"type": "boolean",
"description": "Whether to uninstall per-tenant extensions",
"default": false,
"example": true
},
"SkipInstallingThirdPartyGlobalApps": {
"type": "boolean",
"description": "Whether to uninstall third-party AppSource apps",
"default": false,
"example": true
},
"SkipEnvironmentCleanup": {
"type": "boolean",
"description": "Whether to skip execution of cleanup codeunits",
"default": false,
"example": true
}
}
}