POST API/Companies

Creates 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

Request Formats

application/json, text/json

{
  "Name": "sample string 1",
  "StorageLimit": 1,
  "LicenseSettings": 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