2024-08-13 10:24:12 +00:00
|
|
|
---
|
|
|
|
sidebar_position: 3
|
|
|
|
---
|
|
|
|
|
|
|
|
# Delete notification
|
|
|
|
Delete notification by ID
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function DeleteNotification(Val URL, Val NotificationID, Val Token = "") Export`
|
|
|
|
|
2024-08-13 15:52:26 +03:00
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
|
|
|
| NotificationID | --notif | String, Number | Notification ID |
|
|
|
|
| Token | --token | String | Access token, when app auth method used |
|
2024-08-13 10:24:12 +00:00
|
|
|
|
2024-08-13 15:52:26 +03:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
2024-08-13 10:24:12 +00:00
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
:::tip
|
|
|
|
Method at API documentation: [im.notify.delete](https://dev.1c-bitrix.ru/learning/course/index.php?COURSE_ID=93&LESSON_ID=12133)
|
|
|
|
:::
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
2024-08-20 13:11:21 +03:00
|
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
|
|
|
|
NotificationID = "10610";
|
2024-08-13 16:47:32 +03:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.DeleteNotification(URL, NotificationID);
|
|
|
|
|
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
2024-08-23 09:03:08 +03:00
|
|
|
Token = "6476c766006e9f06006b12e400000001000...";
|
2024-08-20 13:11:21 +03:00
|
|
|
NotificationID = "10612";
|
2024-08-13 16:47:32 +03:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.DeleteNotification(URL, NotificationID, Token);
|
2024-08-13 10:24:12 +00:00
|
|
|
```
|
2024-08-13 15:52:26 +03:00
|
|
|
|
2024-08-13 10:24:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 15:52:26 +03:00
|
|
|
|
|
|
|
oint bitrix24 DeleteNotification --url "b24-ar17wx.bitrix24.by" --notif "8692" --token "fe3fa966006e9f06006b12e400000001000..."
|
2024-08-13 10:24:12 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-08-14 09:06:31 +03:00
|
|
|
{
|
2024-08-13 15:52:26 +03:00
|
|
|
"result": true,
|
|
|
|
"time": {
|
|
|
|
"start": 1722087271.36087,
|
|
|
|
"finish": 1722087271.39818,
|
|
|
|
"duration": 0.0373120307922363,
|
|
|
|
"processing": 0.0110759735107422,
|
|
|
|
"date_start": "2024-07-27T13:34:31+00:00",
|
|
|
|
"date_finish": "2024-07-27T13:34:31+00:00",
|
|
|
|
"operating_reset_at": 1722087871,
|
|
|
|
"operating": 0
|
|
|
|
}
|
|
|
|
}
|
2024-08-13 10:24:12 +00:00
|
|
|
```
|