Products: Managed Backup (Agent)
Article ID: m0635Last Modified: 10-Oct-2025

POST API/Companies

Creates a new company.

Request Information

URI Parameters

None.

Body Parameters

Company

Name Description Type Additional Information
Name Company Name string Required
StorageLimit Company backup limit. A negative value indicates the resource is unconstrained by a quota integer None
LicenseSettings Company license settings: 0 - Custom (Users have custom license settings) 1 - Global Pool (Users activate paid licenses from the global pool automatically) 2 - Company Pool (Users can activate only limited number of paid licenses from the company pool) LicensingMode None
DestinationId Specifies IDs of the backup destinations assigned for a specific company array None
DefaultLicenses Specifies default license types for new installations on endpoints in a specific company integer None
AllowedLicenses Specifies allowed license types for a specific company array None

For license type enums refer to the following article.

Request Formats

application/json, text/json

{
  "Name": "string",
  "StorageLimit": 0,
  "LicenseSettings": 0,
  "Destinations": [
    {
      "DestinationId": "00000000-0000-0000-0000-000000000000",
      "PlanId": 0
    }
  ],
  "DefaultLicense": 0,
  "AllowedLicenses": [
    0
  ]
}

application/xml, text/xml

<CompanyCreateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MBSAPImvc.Engine.Models">
  <LicenseSettings>CustomUsersSettings</LicenseSettings>
  <Name>sample string 1</Name>
  <StorageLimit>1</StorageLimit>
</CompanyCreateModel>

Response Information

Resource Description

A result of company creation. IHttpActionResult None.

Response Formats

  • application/json
  • text/json
  • application/xml
  • text/xml
https://git.cloudberrylab.com/egor.m/doc-help-mbs.git
Production