1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-16 11:38:11 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Tasks-managment/Disapprove-task.md

56 lines
1.3 KiB
Markdown
Raw Normal View History

---
sidebar_position: 8
---
# Disapprove task
Disapprove task by ID
2024-07-10 12:58:29 +02:00
`Function DisapproveTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | 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
2024-07-10 13:05:58 +02:00
<br/>
:::tip
Method at API documentation: [tasks.task.disapprove](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/tasks_task_disapprove.php)
:::
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
2024-08-20 12:11:21 +02:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
2024-09-10 12:48:11 +02:00
TaskID = "1514";
2024-08-13 15:47:32 +02:00
Result = OPI_Bitrix24.DisapproveTask(URL, TaskID);
URL = "b24-ar17wx.bitrix24.by";
2024-09-10 12:48:11 +02:00
Token = "b529cb66006e9f06006b12e400000001000...";
TaskID = "1516";
2024-08-13 15:47:32 +02:00
Result = OPI_Bitrix24.DisapproveTask(URL, TaskID, Token);
```
```sh title="CLI command example"
oint bitrix24 DisapproveTask --url "b24-ar17wx.bitrix24.by" --task "1080" --token "fe3fa966006e9f06006b12e400000001000..."
```
```json title="Result"
2024-08-14 08:06:31 +02:00
{
"error": 1048582,
"error_description": "Action on the task is not allowed"
}
```