1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Notifications-managment/Delete-notification.md
2024-08-09 17:15:52 +03:00

1.5 KiB

sidebar_position
3

Delete notification

Delete notification by ID

Function DeleteNotification(Val URL, Val NotificationID, Val Token = "") Export

Parameter CLI option Type Destination
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

Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API


:::tip Method at API documentation: im.notify.delete :::

 URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2pph8uucc89is6c/";
 NotificationID = "8690";
 
 Result = OPI_Bitrix24.DeleteNotification(URL, NotificationID);
 
 URL = "b24-ar17wx.bitrix24.by";
 Token = "fe3fa966006e9f06006b12e400000001000...";
 NotificationID = "8692";
 
 Result = OPI_Bitrix24.DeleteNotification(URL, NotificationID, Token);
 
 oint bitrix24 DeleteNotification --url %url% --notif %notif% --token %token%

{
 "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
 }
}