Webhook Delete and Merge Not Working

Webhook Delete and Merge Not Working

I understand that Zoho has moved to a 'Ticket_Update' event for standard ticket deletions and we have been able to change our processes to handle those events. However when a ticket is merged I have been informed that I should receive a 'Ticket_Delete' event for that ticket, but my cache of the hooks I have received shows absolutely no Ticket_Delete events. Even if I permanently delete a ticket from the recycle bin manually I am not seeing any Ticket_Delete hooks come through.

My hook subscription is as follows:

  1. [
  2.     {
  3.         "id" : $removed,
  4.         "subscriptions" : {
  5.             "Ticket_Thread_Add" : {
  6.                 "departmentIds" : [ 
  7.                     $removed
  8.                 ]
  9.             },
  10.             "Contact_Add" : null,
  11.             "Ticket_Update" : {
  12.                 "departmentIds" : [ 
  13.                     $removed
  14.                 ],
  15.                 "includePrevState" : false
  16.             },
  17.             "Ticket_Add" : {
  18.                 "departmentIds" : [ 
  19.                     $removed
  20.                 ]
  21.             },
  22.             "Ticket_Delete" : null,
  23.             "Ticket_Comment_Add" : {
  24.                 "departmentIds" : [ 
  25.                     $removed
  26.                 ]
  27.             },
  28.             "Contact_Update" : {
  29.                 "includePrevState" : false
  30.             },
  31.             "Account_Add" : null,
  32.             "Account_Update" : {
  33.                 "includePrevState" : false
  34.             }
  35.         },
  36.         "url" : $removed,
  37.         "ignoreSourceId" : null,
  38.         "createdTime" : "2019-01-27T07:54:15.530Z",
  39.         "modifiedTime" : "2019-01-27T07:54:15.530Z",
  40.         "createdBy" : $removed,
  41.         "isEnabled" : true
  42.     }
  43. ]