GET /agents/jobs/{ID}/includes/{ID}

Returns a representation of a protected computer or a protection group having the specified ID and processed by the Veeam Agent backup job with the specified ID.

Request

To get a representation of a protected computer or a protection group processed by the Veeam Agent backup job, send the GET HTTP request to the URL of the /agents/jobs/{ID}/includes/{ID} resource.

HTTP Request

GET https://<Enterprise-Manager>:9398/api/agents/jobs/{ID}/includes/{ID}

Request Headers

The request contains the following headers:

Header

Required

Description

X-RestSvcSessionId

True

The request requires authorization. In the header, the client must send a session ID copied from the server reply to the request creating a new logon session. For details, see Authentication and Security.

Accept

False

Identifies the format of the response. Possible values:

  • application/xml — the client can send this value in the header to accept response in the XML format.
  • application/json — the client must send this value in the header to accept the request in the JSON format.

If the request does not contain the header, the server will return the response in the XML format.

Request Body

None.

Response

The server returns the following response to the client.

Response Codes

A successfully completed operation returns response code 200 OK.

Response Headers

The response to this request contains the following headers. The response may also include additional standard HTTP headers.

Header

Description

Content-length

The length of the response body.

Content-type

The media type and syntax of the request body message. Possible values:

  • application/xml
  • application/json

Response Body

In the response body, the REST API returns an entity reference of the /agents/jobs/{ID}/includes/{ID} resource that contains the following parameters.

Element

Type

Description

ObjectInJobId

String

ID of the protected computer or protection group, for example: e310aa12-eff2-41f4-97c8-631b677fc17f.

Name

String

Name of the protected computer or protection group, for example: DC-SRV.

DisplayName

String

Display name of the protected computer or protection group, for example: DC-SRV.

GuestProcessingOptions

GuestProcessingOptionsType

Options for application-aware image processing. For details, see Guest Processing Options.

To view query parameters that you can use for filtering or sorting, see GET /query?type=ObjectInAgentBackupJob.

Example

A sample request below returns a resource representation of the VM having ID 83071dc0-44f2-49b6-b431-1cb79ed66639 that is processed by the job having ID da4a15c2-04e7-4135-b876-577249d3d720.

Request:

GET https://localhost:9398/api/jobs/da4a15c2-04e7-4135-b876-577249d3d720/includes/83071dc0-44f2-49b6-b431-1cb79ed66639

 

Request Header:

X-RestSvcSessionId   NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj

 

Response:

200 OK

 

Response Body:

<?xml version="1.0" encoding="utf-8"?>
<ObjectInAgentBackupJob xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Href="https://enterprise06.tech.local:9398/api/agents/jobs/f3290acb-f325-41e4-a2c5-5a629d08f929/includes/da371073-7437-4f3f-8ab0-bbaf373e4c64" Type="ObjectInAgentBackupJob" xmlns="http://www.veeam.com/ent/v1.0">
   <ObjectInJobId>da371073-7437-4f3f-8ab0-bbaf373e4c64</ObjectInJobId>
   <Name>Protection Group 1</Name>
   <DisplayName>Protection Group 1</DisplayName>
   <GuestProcessingOptions>
       <VssSnapshotOptions>
           <VssSnapshotMode>RequireSuccess</VssSnapshotMode>
           <IsCopyOnly>false</IsCopyOnly>
       </VssSnapshotOptions>
       <WindowsGuestFSIndexingOptions>
           <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
           <IncludedIndexingFolders />
           <ExcludedIndexingFolders>
               <Path>%windir%</Path>
               <Path>%ProgramFiles%</Path>
               <Path>%ProgramFiles(x86)%</Path>
               <Path>%ProgramW6432%</Path>
               <Path>%TEMP%</Path>
           </ExcludedIndexingFolders>
       </WindowsGuestFSIndexingOptions>
       <LinuxGuestFSIndexingOptions>
           <FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
           <IncludedIndexingFolders />
           <ExcludedIndexingFolders>
               <Path>/cdrom</Path>
               <Path>/dev</Path>
               <Path>/media</Path>
               <Path>/mnt</Path>
               <Path>/proc</Path>
               <Path>/tmp</Path>
               <Path>/lost+found</Path>
           </ExcludedIndexingFolders>
       </LinuxGuestFSIndexingOptions>
       <SqlBackupOptions>
           <TransactionLogsProcessing>OnlyOnSuccessJob</TransactionLogsProcessing>
           <BackupLogsFrequencyMin>15</BackupLogsFrequencyMin>
           <UseDbBackupRetention>true</UseDbBackupRetention>
           <RetainDays>15</RetainDays>
       </SqlBackupOptions>
       <WindowsCredentialsId />
       <LinuxCredentialsId />
   </GuestProcessingOptions>
</ObjectInAgentBackupJob>