
This is an archive version of the document. To get the most up-to-date information, see the
current version.
GET /query?type=Passwords
Returns a resource representation of a collection of passwords created on backup servers connected to Veeam Backup Enterprise Manager. For details, see /backupServers/{ID}/passwords.
To get a list of passwords, send the GET HTTP request to the query with the type parameter set to Passwords.
GET https://<Enterprise-Manager>:9398/api/query?type=Passwords |
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. |
None.
In the query, you can use the following parameters for filtering.
Parameter | Type | Description |
---|
PasswordKeyID | String | ID of the password created on the backup server, for example: bd2fe652-b6c0-4f9f-b466-e10c4dc3e3da |
Hint | String | Hint for the password. |
BackupServerUid | UidType | UID of the backup server where the password has been created, for example: urn:veeam:BackupServer:15942270-fb56-4dcc-96e9-5f80e4725a15. |
BackupServerName | String | Name of the backup server where the password has been created. |
The server returns the following response to the client.
A successfully completed operation returns response code 200 OK.
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
|
In the response body, Veeam Backup Enterprise Manager returns a representation of the /backupServers/{ID}/passwords resource collection.
The example below returns an entity resource representation of a collection of passwords created on the enterprise06.tech.local backup server.
Request: GET https://localhost:9398/api/query?type=Passwords&format=Entities&filter=BackupServerName=="enterprise06.tech.local" Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj Response: 200 OK Response Body: <QueryResult xmlns="http://www.veeam.com/ent/v1.0"> <Resources> <PasswordKeyInfoList> <PasswordKeyInfo Type="PasswordKey" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563/passwords/ebf6c20f-7126-4186-a1b8-24e6c541161c"> <Links> <Link Rel="Up" Type="BackupServer" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563?format=Entity" Name="enterprise06.tech.local" /> <Link Rel="Edit" Type="PasswordKey" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563/passwords/ebf6c20f-7126-4186-a1b8-24e6c541161c" /> <Link Rel="Delete" Type="PasswordKey" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563/passwords/ebf6c20f-7126-4186-a1b8-24e6c541161c" /> </Links> <Id>ebf6c20f-7126-4186-a1b8-24e6c541161c</Id> <Hint>Admin password</Hint> <LastModificationDate>2021-06-24T21:04:18+02:00</LastModificationDate> </PasswordKeyInfo> <PasswordKeyInfo Type="PasswordKey" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563/passwords/45376db8-eb62-4940-8c4d-c6adf0ca11a1"> <Links> <Link Rel="Up" Type="BackupServer" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563?format=Entity" Name="enterprise06.tech.local" /> <Link Rel="Edit" Type="PasswordKey" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563/passwords/45376db8-eb62-4940-8c4d-c6adf0ca11a1" /> <Link Rel="Delete" Type="PasswordKey" Href="https://localhost:9398/api/backupServers/7445e6ce-86f5-4171-b909-dac209c66563/passwords/45376db8-eb62-4940-8c4d-c6adf0ca11a1" /> </Links> <Id>45376db8-eb62-4940-8c4d-c6adf0ca11a1</Id> <Hint>Lorem ipsum dolor sit amet</Hint> <LastModificationDate>2021-06-24T21:05:56+02:00</LastModificationDate> </PasswordKeyInfo> </PasswordKeyInfoList> </Resources> <PagingInfo PagesCount="1" PageSize="100" PageNum="1"> <Links> <Link Rel="First" Href="https://localhost:9398/api/query?type=Passwords&format=Entities&filter=BackupServerName=="enterprise06.tech.local"&pageSize=100&page=1" /> <Link Rel="Last" Href="https://localhost:9398/api/query?type=Passwords&format=Entities&filter=BackupServerName=="enterprise06.tech.local"&pageSize=100&page=1" /> </Links> </PagingInfo> </QueryResult> |