This API gother information about messages passing in the system, in this patch the following API will be supported: /messaging_service/messages/replied /messaging_service/messages/sent /messaging_service/messages/pending /messaging_service/messages/exception /messaging_service/messages/respond_pending /messaging_service/messages/dropped The swagger defintion can be retrieved from: /api-doc/messaging_service
17 lines
249 B
C++
17 lines
249 B
C++
/*
|
|
* Copyright 2015 Cloudius Systems
|
|
*/
|
|
|
|
#ifndef API_MESSAGING_SERVICE_HH_
|
|
#define API_MESSAGING_SERVICE_HH_
|
|
|
|
#include "api.hh"
|
|
|
|
namespace api {
|
|
|
|
void set_messaging_service(http_context& ctx, routes& r);
|
|
|
|
}
|
|
|
|
#endif /* API_MESSAGING_SERVICE_HH_ */
|