From d358236f42fa3fb87d040feee9fe92177ba3f3ca Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Fri, 19 Dec 2014 10:44:55 -0600 Subject: [PATCH] Corrected example for show private message so it would result in a valid call --- src/routes/apiv2.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/apiv2.coffee b/src/routes/apiv2.coffee index 408fd3f73f..7b1ae522a0 100644 --- a/src/routes/apiv2.coffee +++ b/src/routes/apiv2.coffee @@ -593,7 +593,7 @@ module.exports = (swagger, v2) -> description: 'Send a private message to a member' parameters: [ path 'uuid', 'The UUID of the member to message', 'string' - body '', '{message: "The private message to send"}', 'object' + body '', '{"message": "The private message to send"}', 'object' ] middleware: [auth.auth] action: members.sendPrivateMessage