1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-23 21:29:38 +02:00
Vitaly the Alpaca (bot) 4de7fa4268 Main build (Jenkins)
2024-12-16 19:38:57 +03:00

75 lines
1.7 KiB
Plaintext

---
sidebar_position: 8
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Disapprove task
Disapprove task by ID
`Function DisapproveTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| TaskID | --task | Number, String | ✔ | Task ID |
| 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: [tasks.task.disapprove](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/tasks_task_disapprove.php)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5...";
TaskID = "3982";
Result = OPI_Bitrix24.DisapproveTask(URL, TaskID);
URL = "b24-ar17wx.bitrix24.by";
Token = "a8e65667006e9f06006b12e400000001000...";
TaskID = "3984";
Result = OPI_Bitrix24.DisapproveTask(URL, TaskID, Token);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 DisapproveTask \
--url "b24-ar17wx.bitrix24.by" \
--task "4024" \
--token "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 DisapproveTask ^
--url "b24-ar17wx.bitrix24.by" ^
--task "4024" ^
--token "***"
```
</TabItem>
</Tabs>
```json title="Result"
{
"error": 1048582,
"error_description": "Действие над задачей не разрешено"
}
```