Result of created local users in bulk
Responses
Status  | Meaning  | Description  | 
|---|---|---|
200  | OK  | |
400  | Bad Request  | |
401  | Unauthorized  | |
403  | Access Forbidden  | |
404  | Not Found  | |
406  | Not Acceptable  | |
429  | Too Many Requests  | |
500  | Internal Server Error  | 
To perform this operation, you must be authenticated by means of one of the following methods: OAuth_authorization
{
  "completed": true,
  "failed": [
    {
      "errors": {
        "property1": "string",
        "property2": "string"
      },
      "request": {
        "devices": [
          {
            "description": "string",
            "name": "string"
          }
        ],
        "email": "string",
        "firstName": "string",
        "groupId": "string",
        "lastName": "string",
        "role": "ADMIN",
        "username": "string"
      }
    }
  ],
  "succeed": [
    {
      "authType": "INTERNAL",
      "devices": [
        {
          "description": "string",
          "id": "string",
          "ipV4Address": "string",
          "ipV6Address": "string",
          "name": "string",
          "vpnRegions": [
            {
              "continent": "string",
              "country": "string",
              "countryIso": "string",
              "id": "string",
              "regionName": "string"
            }
          ]
        }
      ],
      "email": "string",
      "firstName": "string",
      "groupId": "string",
      "id": "string",
      "lastName": "string",
      "role": "ADMIN",
      "status": "ACTIVE",
      "username": "string"
    }
  ]
}