1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-07 15:20:39 +02:00

58 lines
1.4 KiB
Markdown
Raw Normal View History

---
sidebar_position: 8
---
# Disapprove task
Disapprove task by ID
2024-07-10 13:58:29 +03: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 14:05:58 +03: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 13:58:29 +03:00
```bsl title="Code example"
URL = FunctionParameters["Bitrix24_URL"];
TaskID = FunctionParameters["Bitrix24_HookTaskID"];
Result = OPI_Bitrix24.DisapproveTask(URL, TaskID);
OPI_TestDataRetrieval.WriteLog(Result, "DisapproveTask (wh)", "Bitrix24");
URL = FunctionParameters["Bitrix24_Domain"];
Token = FunctionParameters["Bitrix24_Token"];
TaskID = FunctionParameters["Bitrix24_TaskID"];
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-07-10 14:11:17 +03:00
{
"error": 1048582,
"error_description": "Action on the task is not allowed"
}
```