Inventory Browser

Inventory browser allows you to perform the following operations:

  • Retrieve virtualization servers and their virtual infrastructure objects (data centers, clusters, hosts, resource pools, vApps, VMs and so on). In this version, you can browse VMware vSphere, VMware Cloud Director, and HyperV objects.
  • Manage computers and Active Directory objects with protection groups.
  • Manage unstructured data sources.
  • Manage Microsoft Entra ID tenants.

Get All VMware vSphere ServersDeprecated

The HTTP GET request to the /api/v1/inventory/vmware/hosts path allows you to get an array of all VMware vSphere servers added to the backup infrastructure.

Available to: Veeam Backup Administrator, Veeam Backup Operator, Veeam Restore Operator, Veeam Tape Operator.

SecurityBearer
Request
query Parameters
skip
integer <int32>

Number of VMware vSphere servers to skip.

limit
integer <int32>
Default: 200

Maximum number of VMware vSphere servers to return.

orderColumn
string (EViRootFiltersOrderColumn)

Sorts VMware vSphere servers by one of the VMware vSphere server parameters.

Enum: "Name" "Type"
orderAsc
boolean

If true, sorts VMware vSphere servers in the ascending order by the orderColumn parameter.

nameFilter
string

Filters VMware vSphere servers by the nameFilter pattern. The pattern can match any VMware vSphere server parameter. To substitute one or more characters, use the asterisk (*) character at the beginning and/or at the end.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/vmware/hosts
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}

Get VMware vSphere Server ObjectsDeprecated

The HTTP GET request to the /api/v1/inventory/vmware/hosts/{name} path allows you to get an array of virtual infrastructure objects of the VMware vSphere server that has the specified name.

Available to: Veeam Backup Administrator, Veeam Backup Operator, Veeam Restore Operator, Veeam Tape Operator.

SecurityBearer
Request
path Parameters
name
required
string

Name of the VMware vSphere server.

query Parameters
skip
integer <int32>

Number of objects to skip.

limit
integer <int32>
Default: 200

Maximum number of objects to return.

orderColumn
string (EvCentersInventoryFiltersOrderColumn)

Sorts objects by one of the object parameters.

Enum: "Name" "ObjectId" "Type"
orderAsc
boolean

If true, sorts objects in the ascending order by the orderColumn parameter.

objectIdFilter
string

Filters objects by object ID.

hierarchyTypeFilter
string (EHierarchyType)

Filters objects by hierarchy type.

Enum: "HostsAndClusters" "DatastoresAndVms" "HostsAndDatastores" "VmsAndTemplates" "VmsAndTags" "Network" "VmwareDatastores" "HostsAndDisks"
nameFilter
string

Filters objects by the nameFilter pattern. The pattern can match any object parameter. To substitute one or more characters, use the asterisk (*) character at the beginning, at the end or both.

typeFilter
string (EVmwareInventoryType)

Filters objects by virtual infrastructure type.

Enum: "Unknown" "VirtualMachine" "vCenterServer" "Datacenter" "Cluster" "Host" "ResourcePool" "Folder" "Datastore" "DatastoreCluster" "StoragePolicy" "Template" "ComputeResource" "VirtualApp" "Tag" "Category" "Multitag" "Network" "DVSNetwork" "Disk" "SharedDisk"
parentContainerNameFilter
string

Filters objects by name of the parent container.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/vmware/hosts/{name}
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}

Rescan Inventory ObjectsDeprecated

The HTTP POST request to the /api/v1/inventory/{hostname}/rescan path allows you to rescan inventory objects of a virtualization server (or host) that has the specified hostname.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
path Parameters
hostname
required
string

Name of the server.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
201

A HierarchyRescan task has been started. To check the progress, track the task state.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

post/api/v1/inventory/{hostname}/rescan
Request samples
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "type": "Common",
  • "name": "string",
  • "state": "Starting",
  • "progressPercent": 0,
  • "creationTime": "2019-08-24T14:15:22Z",
  • "endTime": "2019-08-24T14:15:22Z",
  • "result": "None",
  • "additionalInfo": {
    }
}

Get All Servers

The HTTP POST request to the /api/v1/inventory path allows you to get an array of all servers and hosts added to the backup infrastructure.

TIP
To filter servers by type, use the following possible values:
  • For VMware VSphere: VCenterServer, Folder, Host
  • For VMware Cloud Director: CloudDirectorServer
  • For Microsoft Hyper-V: Scvmm, Cluster, Host
For details, see request samples.

To browse Veeam Agents inventory, use the Get All Protection Groups request.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Request Body schema: application/json
object (PaginationFilter)

Pagination settings.

object (FilterExpressionModel)

Filter settings.

object (SortExpressionModel)

Sorting settings.

hierarchyType
string

Hierarchy type. The possible values you can specify depend on the used request.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

post/api/v1/inventory
Request samples
application/json
{
  • "filter": {
    },
  • "sorting": {
    }
}
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    },
  • "hierarchyType": null
}

Get Inventory Objects

The HTTP POST request to the /api/v1/inventory/{hostname} path allows you to get an array of inventory objects of a virtualization server (or host) that has the specified hostname.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
path Parameters
hostname
required
string

DNS name or IP address of the server. To get this value, run the Get All Servers request.

query Parameters
resetCache
boolean
Deprecated

If true, the cache will be reset for this request. Resetting the cache slows down request processing but it allows you to get up-to-date data.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Request Body schema: application/json
object (PaginationFilter)

Pagination settings.

object (FilterExpressionModel)

Filter settings.

object (SortExpressionModel)

Sorting settings.

hierarchyType
string

Hierarchy type. The possible values you can specify depend on the used request.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

post/api/v1/inventory/{hostname}
Request samples
application/json
{
  • "filter": {
    },
  • "sorting": {
    }
}
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    },
  • "hierarchyType": "string"
}

Get All Protection Groups

The HTTP POST request to the /api/v1/inventory/physical path allows you to get an array of computers added to protection groups.

NOTE
This request is only used to get protected computers in order to add them to a backup job. For more information on how to get, add and manage protection groups, see the Protection Groups section.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Request Body schema: application/json
object (PaginationFilter)

Pagination settings.

object (FilterExpressionModel)

Filter settings.

object (SortExpressionModel)

Sorting settings.

hierarchyType
string

Hierarchy type. The possible values you can specify depend on the used request.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

post/api/v1/inventory/physical
Request samples
application/json
{
  • "filter": {
    },
  • "sorting": {
    }
}
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}

Get Inventory Objects for Specific Protection Group

The HTTP POST request to the /api/v1/inventory/physical/{protectionGroupId} path allows you to get an array of inventory objects of physical or cloud machines for a protection group with the specified protectionGroupId.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
path Parameters
protectionGroupId
required
string <uuid>

Protection group ID. To get the ID, run the Get All Protection Groups request.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Request Body schema: application/json
object (PaginationFilter)

Pagination settings.

object (FilterExpressionModel)

Filter settings.

object (SortExpressionModel)

Sorting settings.

hierarchyType
string

Hierarchy type. The possible values you can specify depend on the used request.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

post/api/v1/inventory/physical/{protectionGroupId}
Request samples
application/json
{
  • "filter": {
    },
  • "sorting": {
    }
}
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    },
  • "hierarchyType": "Computers"
}

Get All Unstructured Data Servers

The HTTP GET request to the /api/v1/inventory/unstructuredDataServers path allows you to get an array of unstructured data servers available on a backup server.

Available to: Veeam Backup Administrator, Veeam Backup Operator, Veeam Restore Operator, Veeam Tape Operator, Veeam Backup Viewer.

SecurityBearer
Request
query Parameters
skip
integer <int32>

Number of unstructured data servers to skip.

limit
integer <int32>
Default: 200

Maximum number of unstructured data servers to return.

orderColumn
string (EUnstructuredDataServersFiltersOrderColumn)

Sorts unstructured data servers by one of the unstructured data server parameters.

Enum: "Name" "Description"
orderAsc
boolean

If true, sorts unstructured data servers in the ascending order by the orderColumn parameter.

nameFilter
string

Filters unstructured data servers by the nameFilter pattern. The pattern can match any unstructured data server parameter. To substitute one or more characters, use the asterisk (*) character at the beginning and/or at the end.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/unstructuredDataServers
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}

Get Unstructured Data Servers

The HTTP GET request to the /api/v1/inventory/unstructuredDataServers/{id} path allows you to get an unstructured data server that has the specified id.

Available to: Veeam Backup Administrator, Veeam Backup Operator, Veeam Restore Operator, Veeam Tape Operator, Veeam Backup Viewer.

SecurityBearer
Request
path Parameters
id
required
string <uuid>

ID of the unstructured data server. To get the ID, run the Get All Unstructured Data Servers request.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/unstructuredDataServers/{id}
Request samples
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "type": "FileServer",
  • "name": "string",
  • "hostId": "70e3fb2d-1cb6-4dbc-ab8d-fa7209aca5dd",
  • "processing": {
    }
}

Get All Microsoft Entra ID Tenants

The HTTP GET request to the /api/v1/inventory/entraId/tenants path allows you to get an array of all Microsoft Entra ID tenants added to the backup server.

Available to: Veeam Backup Administrator, Veeam Backup Operator Veeam Restore Operator, Veeam Tape Operator, Veeam Backup Viewer.

SecurityBearer
Request
query Parameters
skip
integer <int32>

Number of Microsoft Entra ID tenants to skip.

limit
integer <int32>
Default: 200

Maximum number of Microsoft Entra ID tenants to return.

orderColumn
string (EEntraIDTenantsFiltersOrderColumn)

Sorts Microsoft Entra ID tenants by one of the tenant parameters.

Enum: "Name" "Description"
orderAsc
boolean

If true, sorts Microsoft Entra ID tenants in the ascending order by the orderColumn parameter.

nameFilter
string

Filters Microsoft Entra ID tenants by the nameFilter pattern. The pattern can match any Microsoft Entra ID tenant parameter. To substitute one or more characters, use the asterisk (*) character at the beginning and/or at the end.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/entraId/tenants
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}

Add Microsoft Entra ID Tenant

The HTTP POST request to the /api/v1/inventory/entraId/tenants path allows you to add a Microsoft Entra ID tenant to the backup server.

When adding a tenant, specify an existing Microsoft Entra ID app registration or let Veeam Backup & Replication create a new one. If you choose to create a new app registration, you must generate a verification code and register the new application before you start adding a tenant:

  1. To generate a code, use the Get Microsoft Entra ID Verification Code request.
  2. To register the new application, use the Register Microsoft Entra ID Application request.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Request Body schema: application/json
required
azureTenantId
required
string <uuid>

Tenant ID assigned by Microsoft Entra ID.

creationMode
required
string (EEntraIDTenantCreationMode)

Connection method that defines whether you want to connect to Microsoft Entra ID using an existing or a newly created app registration.

Enum: "newAccount" "existingAccount"
description
string

Tenant description.

cacheRepositoryId
string <uuid>

ID of a backup repository that is used as a cache repository for the tenant. If you do not specify the ID, the default backup repository is used.

region
string (EAzureRegionType)

Microsoft Azure region.

Enum: "China" "Global" "Government"
object (EntraIDTenantExistingAccountSpec)

Existing Microsoft Entra ID app registration.

object (EntraIDTenantNewAccountSpec)

New Microsoft Entra ID app registration.

Responses
201

An Infrastructure session has been created to add the tenant. To check the progress, track the session state.

400

Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

post/api/v1/inventory/entraId/tenants
Request samples
application/json
{
  • "azureTenantId": "00000000-0000-0000-0000-000000000000",
  • "cacheRepositoryId": "88788f9e-d8f5-4eb4-bc4f-9b3f5403bcec",
  • "creationMode": "newAccount",
  • "description": "Tenant 1",
  • "region": "Global",
  • "newAccount": {
    }
}
Response samples
application/json
{
  • "sessionType": "Infrastructure",
  • "state": "Working",
  • "id": "89fe3413-cde0-4061-925a-6d72857db45c",
  • "name": "Infrastructure Item Saving",
  • "jobId": "89fe3413-cde0-4061-925a-6d72857db45c",
  • "creationTime": "2025-07-30T13:01:27.491999+02:00",
  • "progressPercent": 0,
  • "result": {
    },
  • "usn": 331548,
  • "initiatedBy": ".\\veeam-rest-service"
}

Get Microsoft Entra ID Tenant

The HTTP GET request to the /api/v1/inventory/entraId/tenants/{id} path allows you to get a Microsoft Entra ID tenant that has the specified id.

Available to: Veeam Backup Administrator, Veeam Backup Operator, Veeam Restore Operator, Veeam Tape Operator, Veeam Backup Viewer.

SecurityBearer
Request
path Parameters
id
required
string <uuid>

ID of the Microsoft Entra ID tenant. To get the ID, run the Get All Microsoft Entra ID Tenants request.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/entraId/tenants/{id}
Request samples
Response samples
application/json
{
  • "region": "Global",
  • "id": "a1401206-5c01-4586-aa81-573aeb027b6d",
  • "azureTenantId": "00000000-0000-0000-0000-000000000000",
  • "description": "Tenant 1",
  • "cacheRepositoryId": "88788f9e-d8f5-4eb4-bc4f-9b3f5403bcec",
  • "authentication": {
    }
}

Edit Microsoft Entra ID Tenant

The HTTP PUT request to the /api/v1/inventory/entraId/tenants/{id} path allows you to edit a Microsoft Entra ID tenant that has the specified id.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
path Parameters
id
required
string <uuid>

ID of the Microsoft Entra ID tenant. To get the ID, run the Get All Microsoft Entra ID Tenants request.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Request Body schema: application/json
required
id
required
string <uuid>

Tenant ID assigned by Veeam Backup & Replication.

cacheRepositoryId
required
string <uuid>

ID of a backup repository that is used as a cache repository for the tenant.

azureTenantId
string <uuid>

Tenant ID assigned by Microsoft Entra ID.

description
string

Tenant description.

region
string (EAzureRegionType)

Microsoft Azure region.

Enum: "China" "Global" "Government"
object (EntraIDTenantAuthenticationModel)

Authentication settings.

Responses
200

Microsoft Entra ID tenant has been updated.

400

Bad request. This error is related to POST/PUT requests. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

put/api/v1/inventory/entraId/tenants/{id}
Request samples
application/json
{
  • "region": "Global",
  • "id": "a1401206-5c01-4586-aa81-573aeb027b6d",
  • "azureTenantId": "00000000-0000-0000-0000-000000000000",
  • "description": "Tenant 1",
  • "cacheRepositoryId": "88788f9e-d8f5-4eb4-bc4f-9b3f5403bcec",
  • "authentication": {
    }
}
Response samples
application/json
{
  • "region": "Global",
  • "id": "a1401206-5c01-4586-aa81-573aeb027b6d",
  • "azureTenantId": "00000000-0000-0000-0000-000000000000",
  • "description": "Tenant 1",
  • "cacheRepositoryId": "88788f9e-d8f5-4eb4-bc4f-9b3f5403bcec",
  • "authentication": {
    }
}

Remove Microsoft Entra ID Tenant

The HTTP DELETE request to the /api/v1/inventory/entraId/tenants/{id} path allows you to remove a Microsoft Entra ID tenant that has the specified id from the backup infrastructure.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
path Parameters
id
required
string <uuid>

ID of the Microsoft Entra ID tenant. To get the ID, run the Get All Microsoft Entra ID Tenants request.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
201

An InfrastructureItemDeletion session has been created to remove the tenant. To check the progress, track the session state.

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

delete/api/v1/inventory/entraId/tenants/{id}
Request samples
Response samples
application/json
{
  • "sessionType": "InfrastructureItemDeletion",
  • "state": "Working",
  • "id": "af1a6027-3845-487e-9a16-6849f4775a1e",
  • "name": "Infrastructure Item Deletion",
  • "jobId": "fc5683a4-8c25-4f8e-97cc-0a40745a5729",
  • "creationTime": "2025-06-28T20:21:08.81+01:00",
  • "endTime": null,
  • "progressPercent": 0,
  • "result": null,
  • "resourceId": null,
  • "resourceReference": null,
  • "parentSessionId": null,
  • "usn": 0
}

Get Active Directory Objects from Domain

The HTTP GET request to the /api/v1/inventory/activeDirectory/domains/{id} path allows you to get an array of objects from the Active Directory domain that has the specified id.

Available to: Veeam Backup Administrator.

SecurityBearer
Request
path Parameters
id
required
string <uuid>

ID of Active Directory domain. To get the ID, run the Get Active Directory Domains request.

query Parameters
skip
integer <int32>

Number of Active Directory objects to skip.

limit
integer <int32>
Default: 200

Maximum number of Active Directory objects to return.

orderColumn
string (EADDomainFiltersOrderColumn)

Sorts Active Directory objects by one of the parameters.

Value: "Name"
orderAsc
boolean

Sorts Active Directory objects in the ascending order by the orderColumn parameter.

fullNameFilter
string

Filters Active Directory objects by the fullNameFilter pattern. The pattern can match any Active Directory domain parameter. To substitute one or more characters, use the asterisk (*) character at the beginning and/or at the end.

typeFilter
string

Filters Active Directory objects by type.

header Parameters
x-api-version
required
string
Default: 1.3-rev0

Version and revision of the client REST API. Must be in the following format: <version>-<revision>.

Responses
200

OK

401

Unauthorized. The authorization header has been expected but not found (or found but is expired).

403

Forbidden. The user sending the request does not have adequate privileges to access one or more objects specified in the request.

404

Not found. No object was found with the path parameter specified in the request.

500

Internal server error. The request has been received but could not be completed because of an internal error at the server side.

get/api/v1/inventory/activeDirectory/domains/{id}
Request samples
Response samples
application/json
{
  • "data": [
    ],
  • "pagination": {
    }
}