@GET
@Path("/{apiRequestId}")
public Viewable viewNotifications(@PathParam("apiRequestId") String apiRequestId) throws Exception {
ApiRequest request = config.getApiRequestStore().getByApiRequestId(apiRequestId);
NotificationPush notification = request.getNotificationPush();
ApiClientNotificationModel model = new ApiClientNotificationModel(account, apiClient, request, notification);
return new Viewable("/manage/api-notification.jsp", model);
}