(POST) /security/accounts
Adds a user or a group account having a specific security role to Veeam Backup Enterprise Manager.
Request
To add an account with a specific security role to Veeam Backup Enterprise Manager, you need to send the POST HTTP request to the URL of the /security/accounts resource.
HTTP Request
Request Header
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. To learn more, see Authentication and Security. |
Request Body
In the request body, the client must send the parameters for the account that should be added to Veeam Backup Enterprise Manager and the ID of the role that should be assigned to the account. The body of the request must conform to the XML Schema Definition of Veeam Backup Enterprise Manager RESTful API.
The request body must contain the following elements:
Element | Type | Description | Modifiable | Min/Max Occurrence |
AccountType | AccountTypeEnumeration | Type of account added to Veeam Backup Enterprise Manager. Possible values:
| No | 1/1 |
AccountName | String | Name of the account added to Veeam Backup Enterprise Manager, for example: VEEAM\Administrator. | Yes | 1/1 |
Roles | URN | ID of the role assigned to the added account. To get a list of IDs for available roles, send the GET HTTP request to the /security/roles resource. | No | 1/1 |
AllowRestoreAllVms | Boolean | Defines whether the account must have permissions to restore all VMs or not. If this parameter is set to False, the client must provide the restore scope in the HierarchyScopeObjects element. | No | 1/1 |
HierarchyScopeObjects | HierarchyScopeCreateSpecType | Restore scope assigned to the added account. To learn more, see Hierarchy Scope Settings. | No | 0/1 |
FlrSettings | FileRestoreSettingsInfoType | File-level restore restrictions assigned to the added account. To learn more, see File-Level Restore Settings. This option is supported starting from Veeam Backup & Replication 9.0 Update 1. | No | 0/1 |
For example:
<?xml version="1.0" encoding="utf-8"?> |
Hierarchy scope settings are provided in the following format:
<HierarchyScopeObjects> |
You can define the following hierarchy scope settings for the added account:
Element | Type | Description | Modifiable | Min/Max Occurrence |
HierarchyObjRef | HierarchyObjRefType | Reference to the object in the virtual infrastructure hierarchy. You can construct the reference manually or use the lookup service to retrieve the reference. | Yes | 0/1 |
ObjectName | String | Name of the object in the virtual infrastructure hierarchy, for example: VM01. | Yes | 0/1 |
File-level restore settings are provided in the following format:
<FlrSettings> |
You can define the following file-level restore settings for the added account:
Element | Type | Description | Modifiable | Min/Max Occurrence |
FlrInplaceOnly | Boolean | Defines whether the account must have permissions to restore only files with specific filename extensions or not. If this parameter is set to True, the client must provide filename extensions for files that are permitted for restore in the FlrExtentionRestrictions element. | Yes | 1/1 |
FlrExtentionRestrictions | String | Filename extensions for files that are permitted for restore separated by ',' (comma), for example: doc,pptx,pdf. | Yes | 0/1 |
|
You cannot edit file-level restore settings for the created account. To change file-level restore settings for the account, remove the account and create the account with necessary file-level restore settings. |
The server returns the following response to the client.
A successfully completed operation returns response code 201 Created.
Header | Description |
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message: application/xml. |
Request: POST http://localhost:9399/api/security/accounts
Request Header: X-RestSvcSessionId NDRjZmJkYmUtNWE5NS00MTU2LTg4NjctOTFmMDY5YjdjMmNj
Request Body: <?xml version="1.0" encoding="utf-8"?>
Response: 201 Created
Response Body: None |