mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-21 01:50:24 +02:00
67 lines
1.5 KiB
Markdown
67 lines
1.5 KiB
Markdown
|
---
|
||
|
sidebar_position: 4
|
||
|
---
|
||
|
|
||
|
# Delete department
|
||
|
Delets department by ID
|
||
|
|
||
|
|
||
|
|
||
|
`Function DeleteDepartment(Val URL, Val DepartmentID, Val Token = "") Export`
|
||
|
|
||
|
| Parameter | CLI option | Type | Destination |
|
||
|
|-|-|-|-|
|
||
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
||
|
| DepartmentID | --depid | String, Number | Department ID for deletion |
|
||
|
| 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.delete](https://dev.1c-bitrix.ru/rest_help/departments/department_delete.php)
|
||
|
:::
|
||
|
<br/>
|
||
|
|
||
|
|
||
|
```bsl title="Code example"
|
||
|
URL = FunctionParameters["Bitrix24_URL"];
|
||
|
DepartmentID = FunctionParameters["Bitrix24_DepID"];
|
||
|
|
||
|
Result = OPI_Bitrix24.DeleteDepartment(URL, DepartmentID);
|
||
|
|
||
|
|
||
|
|
||
|
URL = FunctionParameters["Bitrix24_Domain"];
|
||
|
Token = FunctionParameters["Bitrix24_Token"];
|
||
|
DepartmentID = FunctionParameters["Bitrix24_HookDepID"];
|
||
|
|
||
|
Result = OPI_Bitrix24.DeleteDepartment(URL, DepartmentID, Token);
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
```sh title="CLI command example"
|
||
|
|
||
|
oint bitrix24 DeleteDepartment --url %url% --depid %depid% --token %token%
|
||
|
|
||
|
```
|
||
|
|
||
|
```json title="Result"
|
||
|
{
|
||
|
"result": true,
|
||
|
"time": {
|
||
|
"start": 1722171482.56495,
|
||
|
"finish": 1722171482.65313,
|
||
|
"duration": 0.0881810188293457,
|
||
|
"processing": 0.0624208450317383,
|
||
|
"date_start": "2024-07-28T12:58:02+00:00",
|
||
|
"date_finish": "2024-07-28T12:58:02+00:00",
|
||
|
"operating_reset_at": 1722172082,
|
||
|
"operating": 0
|
||
|
}
|
||
|
}
|
||
|
```
|