Show notification detail
Allows you to retrieve the booth-level breakdown of a single notification.
        GET
    /api/notifications/{id}/detail
  
  curl \
 --request GET 'http://localhost:4000/api/notifications/{id}/detail' \
 --header "Authorization: $API_KEY"
        Response examples (200)
  
  {
  "data": [
    {
      "booth_id": "f260f115-f2e6-4dde-bcab-98b10fdb8cf6",
      "booth_name": "Booth 1",
      "event_count": 3,
      "region_name": "US East",
      "facility_name": "Facility 1"
    }
  ],
  "page": 1,
  "limit": 1,
  "pages": 20,
  "total": 20
}
        Response examples (401)
  
  {
  "error": "Error Reason"
}
        Response examples (404)
  
  {
  "error": "Error Reason"
}