POST api/2.0/crm/contact/company
Creates the company with the parameters specified in the request
Name |
Description |
Type |
Example |
companyName
sent in body
|
Company name
|
string
|
some text
|
about
sent in body
|
Company description text
optional
|
string
|
some text
|
personList
sent in body
|
Linked person list
optional
|
Collection of numbers
collection
|
1234
|
shareType
sent in body
|
Company privacy: 0 - not shared, 1 - shared for read/write, 2 - shared for read only
|
None, ReadWrite, Read
|
|
managerList
sent in body
|
List of managers for the company
optional
|
Collection of guids
collection
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
customFieldList
sent in body
|
User field list
optional
|
Collection of ASC.Api.Collections.ItemKeyValuePair`2[System.Int32,System.String]s
collection
|
|
photo
sent in body
|
Contact photo (upload using multipart/form-data)
optional
|
Files for adding using multipart/form-data
collection
|
N/A
|
POST api/2.0/crm/contact/company
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"companyName": "some text",
"about": "some text",
"personList": [
1234
],
"shareType": "none",
"managerList": [
"00000000-0000-0000-0000-000000000000"
],
"customFieldList": [
{
"Key": 0,
"Value": null
}
],
"photo": []
}
application/json
{
"status": 0,
"response": {
"companyName": "Food and Culture Project",
"about": "",
"haveLateTasks": false,
"displayName": null,
"isCompany": true,
"isPrivate": true,
"isShared": false,
"shareType": 0,
"currency": null,
"canEdit": false,
"canDelete": false,
"id": 0
}
}
text/xml
<result>
<status>0</status>
<response>
<companyName>Food and Culture Project</companyName>
<about></about>
<haveLateTasks>false</haveLateTasks>
<displayName />
<isCompany>true</isCompany>
<isPrivate>true</isPrivate>
<isShared>false</isShared>
<shareType>0</shareType>
<currency />
<canEdit>false</canEdit>
<canDelete>false</canDelete>
<id>0</id>
</response>
</result>