--- sidebar_position: 21 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Mute task Mute task by ID `Function MuteTask(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
:::tip Method at API documentation: [tasks.task.mute](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/mute_unmute.php) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5..."; TaskID = "3982"; Result = OPI_Bitrix24.MuteTask(URL, TaskID); URL = "b24-ar17wx.bitrix24.by"; Token = "a8e65667006e9f06006b12e400000001000..."; TaskID = "3984"; Result = OPI_Bitrix24.MuteTask(URL, TaskID, Token); ``` ```bash oint bitrix24 MuteTask \ --url "b24-ar17wx.bitrix24.by" \ --task "4024" \ --token "***" ``` ```batch oint bitrix24 MuteTask ^ --url "b24-ar17wx.bitrix24.by" ^ --task "4024" ^ --token "***" ``` ```json title="Result" { "result": { "task": { "id": "2398", "parentId": null, "title": "Another task title", "description": "Another task description", "mark": null, "priority": "1", "multitask": "N", "notViewed": "N", "replicate": "N", "stageId": "0", "createdBy": "1", "createdDate": "2024-10-09T09:19:28+03:00", "responsibleId": "1", "changedBy": "1", "changedDate": "2024-10-09T09:19:35+03:00", "statusChangedBy": null, "closedBy": null, "closedDate": null, "activityDate": "2024-10-09T09:19:28+03:00", "dateStart": null, "deadline": "2024-10-10T12:19:00+03:00", "startDatePlan": "2024-10-09T09:19:28+03:00", "endDatePlan": "2024-10-10T00:00:00+03:00", "guid": "{51464df0-4e32-4fbe-9e9c-5d7081eb0ffb}", "xmlId": null, "commentsCount": null, "serviceCommentsCount": null, "allowChangeDeadline": "N", "allowTimeTracking": "N", "taskControl": "N", "addInReport": "N", "forkedByTemplateId": null, "timeEstimate": "0", "timeSpentInLogs": null, "matchWorkTime": "N", "forumTopicId": null, "forumId": null, "siteId": "s1", "subordinate": "N", "exchangeModified": null, "exchangeId": null, "outlookVersion": "3", "viewedDate": null, "sorting": null, "durationFact": null, "isMuted": "Y", "isPinned": "N", "isPinnedInGroup": "N", "flowId": null, "descriptionInBbcode": "Y", "status": "2", "statusChangedDate": "2024-10-09T09:19:35+03:00", "durationPlan": null, "durationType": "days", "favorite": "N", "groupId": "0", "auditors": [], "accomplices": [], "checklist": [], "group": [], "creator": { "id": "1", "name": "Антон Титовец", "link": "/company/personal/user/1/", "icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg", "workPosition": null }, "responsible": { "id": "1", "name": "Антон Титовец", "link": "/company/personal/user/1/", "icon": "https://b24-ar17wx.bitrix24.by/b28528874/resize_cache/30/c0120a8d7c10d63c83e32398d1ec4d9e/main/d7e/d7e99cf556e4ab676463dae2c00ddfbb/a7e0af6899300e3c684caeca5c334d81.jpg", "workPosition": null }, "accomplicesData": [], "auditorsData": [], "newCommentsCount": 0, "action": { "accept": false, "decline": false, "complete": true, "approve": false, "disapprove": false, "start": true, "pause": false, "delegate": true, "remove": true, "edit": true, "defer": true, "renew": false, "create": true, "changeDeadline": true, "checklistAddItems": true, "addFavorite": true, "deleteFavorite": false, "rate": true, "edit.originator": false, "checklist.reorder": true, "elapsedtime.add": true, "dayplan.timer.toggle": false, "edit.plan": true, "checklist.add": true, "favorite.add": true, "favorite.delete": false }, "checkListTree": { "nodeId": 0, "fields": { "id": null, "copiedId": null, "entityId": null, "userId": 1, "createdBy": null, "parentId": null, "title": "", "sortIndex": null, "displaySortIndex": "", "isComplete": false, "isImportant": false, "completedCount": 0, "members": [], "attachments": [] }, "action": [], "descendants": [] }, "checkListCanAdd": true } }, "time": { "start": 1728454776.52926, "finish": 1728454776.60538, "duration": 0.0761229991912842, "processing": 0.0412311553955078, "date_start": "2024-10-09T09:19:36+03:00", "date_finish": "2024-10-09T09:19:36+03:00", "operating_reset_at": 1728455376, "operating": 0 } } ```