Webhook to Pushbullet's channel notification is not working

This is my first ever experience with photon, webhook, pushbullet.

I created webhook using API token from pushbullet. Then using particle-photon i publish events. In the particle dashboard I even see hook-sent/myEventName and hook-response/myEventName/0 with the response data echoing back original data in the “title” member. However on the push bullet’s URL for my channel i do not see any data.

I am not sure if I am missing a thing to specify association between myEventName to the push bullet’s channel name, somewhere in the push bullet’s world?

This is a webhook.json I used to create a webhook

{
  "eventName": "temperature",
  "url": "https://api.pushbullet.com/v2/pushes",
  "requestType": "POST",
  "headers": {
    "Authorization": "Bearer MY-API-TOKEN",
    "Content-Type": "application/json"
  },
  "json": {
      "type": "note",
      "title": "{{PARTICLE_EVENT_VALUE}}",
      "body": ""
  },
  "mydevices": true
}

To use pushbutton’s channel: I need to add this line
"channel_tag": "theHashTagOfMyChannel"
along with “type”, “title” and “body” in the “json” part of the web hook

{
  "eventName": "temperature",
  "url": "https://api.pushbullet.com/v2/pushes",
  "requestType": "POST",
  "headers": {
    "Authorization": "Bearer MY-API-TOKEN",
    "Content-Type": "application/json"
  },
  "json": {
      "type": "note",
      "title": "{{PARTICLE_EVENT_VALUE}}",
      "body": "",
      "channel_tag": "theHashTagOfMyChannel"
  },
  "mydevices": true
}

@pankajpatel where you able to resolve this or are you still having issues?