From c70d655b9654acd622b39a69a5f5a8852c73c26b Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Wed, 13 Jan 2016 07:26:20 -0500 Subject: [PATCH] Add appendText API (from #2810) to docs. --- doc/api/http_api.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/doc/api/http_api.md b/doc/api/http_api.md index 9809814bf..8d1b64f1b 100644 --- a/doc/api/http_api.md +++ b/doc/api/http_api.md @@ -61,7 +61,7 @@ Portal submits content into new blog post ## Usage ### API version -The latest version is `1.2.12` +The latest version is `1.2.13` The current version can be queried via /api. @@ -280,6 +280,16 @@ returns the text of a pad sets the text of a pad +*Example returns:* + * `{code: 0, message:"ok", data: null}` + * `{code: 1, message:"padID does not exist", data: null}` + * `{code: 1, message:"text too long", data: null}` + +#### appendText(padID, text) + * API >= 1.2.13 + +appends text to a pad + *Example returns:* * `{code: 0, message:"ok", data: null}` * `{code: 1, message:"padID does not exist", data: null}`