Microsoft Dynamics NAV · Example Payload

Navision Restoreenvironment Example

Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision

Navision Restoreenvironment Example is an example object payload from Microsoft Dynamics NAV, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "restoreEnvironment",
  "method": "POST",
  "path": "/applications/{applicationFamily}/environments/{environmentName}/restore",
  "summary": "Restore an Environment",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "RestoreenvironmentRequestExample",
      "example": {
        "EnvironmentName": "example_value",
        "EnvironmentType": "Production",
        "PointInTime": "2026-01-15T10:30:00Z",
        "SkipInstallingPTEs": true,
        "SkipInstallingThirdPartyGlobalApps": true,
        "SkipEnvironmentCleanup": true
      }
    }
  ],
  "responseExamples": [
    {
      "status": "202",
      "contentType": "application/json",
      "name": "Restoreenvironment202Example",
      "example": {
        "id": "abc123",
        "type": "create",
        "status": "Queued",
        "aadTenantId": "500123",
        "createdOn": "2026-01-15T10:30:00Z",
        "startedOn": "2026-01-15T10:30:00Z",
        "completedOn": "2026-01-15T10:30:00Z",
        "createdBy": "example_value",
        "errorMessage": "example_value",
        "parameters": "example_value",
        "environmentName": "example_value",
        "environmentType": "example_value",
        "productFamily": "example_value"
      }
    }
  ]
}