1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-07 07:10:01 +02:00

74 lines
1.8 KiB
Markdown
Raw Normal View History

---
sidebar_position: 2
---
# Update department
Update an existing department
`Function UpdateDepartment(Val URL, Val DepartmentID, 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 |
| DepartmentID | --depid | String, Number | Department ID |
| 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.update](https://dev.1c-bitrix.ru/rest_help/departments/department_update.php)
:::
<br/>
```bsl title="Code example"
2024-09-24 11:38:18 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
2024-08-13 16:47:32 +03:00
2024-10-15 10:07:27 +03:00
DepartmentID = "612";
2024-08-13 16:47:32 +03:00
ParentID = 7;
Result = OPI_Bitrix24.UpdateDepartment(URL, DepartmentID, , ParentID);
2024-09-24 11:38:18 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-10-15 10:07:27 +03:00
Token = "21750a67006e9f06006b12e400000001000...";
2024-08-13 16:47:32 +03:00
2024-10-15 10:07:27 +03:00
DepartmentID = "614";
2024-08-13 16:47:32 +03:00
Name = "New department";
ParentID = 1;
HeadID = 10;
Result = OPI_Bitrix24.UpdateDepartment(URL
, DepartmentID
, Name
, ParentID
, HeadID
, Token);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
{
2024-10-06 16:55:08 +03:00
"result": true,
"time": {
2024-10-09 09:42:00 +03:00
"start": 1728454927.77891,
"finish": 1728454928.01456,
"duration": 0.235645055770874,
"processing": 0.204494953155518,
"date_start": "2024-10-09T09:22:07+03:00",
"date_finish": "2024-10-09T09:22:08+03:00",
"operating_reset_at": 1728455527,
"operating": 0.20447301864624
2024-10-06 16:55:08 +03:00
}
}
```