public Response sendUserEvent(UserEventPush push) throws Exception {
ApiRequest apiRequest = new ApiRequest(apiClient, push, inetAddress);
config.getApiRequestStore().create(apiRequest);
UserEventDelegate delegate = new UserEventDelegate(config.getObjectMapper(), config.getApiRequestStore(), account, apiClient, apiRequest, push);
new Thread(delegate).start();
return buildResponse(apiRequest);
}