--- title: "Get-VBODataRetrievalObject" description: "This cmdlet returns an array of objects whose backed-up data was retrieved from an object storage repository by the specified retrieval job." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vbodataretrievalobject.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Data Retrieval > Get-VBODataRetrievalObject" dateModified: "2026-08-21" --- # Get-VBODataRetrievalObject ## Short Description Returns objects whose backed-up data was retrieved from an object storage repository by retrieval job. ## Syntax ``` Get-VBODataRetrievalObject -DataRetrieval [] ``` ## Detailed Description This cmdlet returns an array of objects whose backed-up data was retrieved from an object storage repository by the specified retrieval job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

DataRetrieval

Specifies a retrieval job. The cmdlet will return objects whose backed-up data was retrieved by this retrieval job.

Accepts the VBODataRetrieval object.

To get this object, run the Get-VBODataRetrieval cmdlet.

VBODataRetrieval

True

Named

True (ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Examples ::: example ### Getting Retrieval Objects This example shows how to get objects whose backed-up data was retrieved by the specified retrieval job. ``` $retrievaljob = Get-VBODataRetrieval -Id 3192dfc9-353f-468f-91b6-c66e5710c63f Get-VBODataRetrievalObject -DataRetrieval $retrievaljob ``` Perform the following steps: 1. Run the [`Get-VBODataRetrieval`](get-vbodataretrieval.md) cmdlet. Specify the `Id` parameter value. Save the result to the `$retrievaljob` variable. 2. Run the `Get-VBODataRetrievalObject` cmdlet with the `$retrievaljob` variable as the `DataRetrieval` parameter value. ::: ## Related Commands [`Get-VBODataRetrieval`](get-vbodataretrieval.md)