Cannot access the search results through the watch execution context - Ctx.payload.hits.total

from results:

  "actions": [
    {
      "id": "slack_1",
      "type": "slack",
      "status": "success",
      "slack": {
        "account": "monitoring",
        "sent_messages": [
          {
            "status": "success",
            "to": "test",
            "message": {
              "from": "9c644ed6-51bf-47ed-8dd6-7ae33e08f9ed",
              "text": "Watch [Logstash] has exceeded the threshold\n "
            }
          }
        ]
      }
    }
  ]

from my watch:

"actions": {
  "slack_1": {
    "slack": {
      "message": {
        "to": [
          "test"
        ],
        "text": "Watch [{{ctx.metadata.name}}] has exceeded the threshold\n{{ctx.payload.hits.total}} {{ctx.metadata.*}}"
      }
    }
  }
},

and even though:

      "hits": {
        "hits": [],
        "total": 12683,
        "max_score": 0
      },

{{ctx.payload.hits.total}} returns empty.

Please advise.