Messages.prototype.insert = function(payload, callback) {
    var path = messagesPath + '/insert';
    this.postRequest(path, {}, payload, function(error, response, body) {
        callback(error, response, body);
    });