POST api/company
This method adds a new company
Request Information
URI Parameters
None.
Body Parameters
CompanyPostRequestName | Description | Type | Additional information |
---|---|---|---|
CompanyName | The name of the company | string |
String length: inclusive between 0 and 50 |
SiteShortName | The site short name | string |
String length: inclusive between 0 and 255 |
Request Formats
application/json, text/json
Sample:
{ "CompanyName": "sample string 1", "SiteShortName": "sample string 2" }
application/xml, text/xml
Sample:
<CompanyPostRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aBILLity.WebAPI.Models.Company"> <CompanyName>sample string 1</CompanyName> <SiteShortName>sample string 2</SiteShortName> </CompanyPostRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |