mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
73 lines
1.9 KiB
Markdown
73 lines
1.9 KiB
Markdown
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
# Create department
|
|
Creates a new department
|
|
|
|
|
|
|
|
`Function CreateDepartment(Val URL, Val Name, Val ParentID = "", Val HeadID = "", Val Token = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|-|-|-|-|
|
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
|
| Name | --title | String | Department name |
|
|
| ParentID | --parentid | String, Number | ID of parent department |
|
|
| HeadID | --headid | String, Number | ID of department manager |
|
|
| Token | --token | String | Access token, when app auth method used |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [department.add](https://dev.1c-bitrix.ru/rest_help/departments/department_add.php)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
```bsl title="Code example"
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2ppp8uucc891111/";
|
|
|
|
Name = "Main department";
|
|
ParentID = 1;
|
|
|
|
Result = OPI_Bitrix24.CreateDepartment(URL, Name, ParentID);
|
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
|
Token = "fe3fa966006e9f06006b12e400000001000...";
|
|
|
|
Name = "Subordinate department";
|
|
ParentID = "68";
|
|
HeadID = 1;
|
|
|
|
Result = OPI_Bitrix24.CreateDepartment(URL, Name, ParentID, HeadID, Token);
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
oint bitrix24 CreateDepartment --url "b24-ar17wx.bitrix24.by" --title "Subordinate department" --parentid "68" --headid "1" --token "fe3fa966006e9f06006b12e400000001000..."
|
|
|
|
```
|
|
|
|
```json title="Result"
|
|
{
|
|
"result": 42,
|
|
"time": {
|
|
"start": 1722171476.78229,
|
|
"finish": 1722171477.19809,
|
|
"duration": 0.415800094604492,
|
|
"processing": 0.389212131500244,
|
|
"date_start": "2024-07-28T12:57:56+00:00",
|
|
"date_finish": "2024-07-28T12:57:57+00:00",
|
|
"operating_reset_at": 1722172076,
|
|
"operating": 0.389190912246704
|
|
}
|
|
}
|
|
|
|
```
|