From e54e95eb7e6dab7e333439b08ae815fe3cb9cc34 Mon Sep 17 00:00:00 2001 From: rsanek Date: Sat, 1 Dec 2018 19:48:06 -0800 Subject: [PATCH] update readme --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 37c154a..de3b6e7 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,30 @@ guarantee that your application continues to function properly in the future. } ``` +* **loadProfile** + + Selects the profile specified in request. + + *Sample request*: + ```json + { + "action": "loadProfile", + "params": { + "name": "user1" + }, + "version": 6 + + } + ``` + + *Sample result*: + ```json + { + "result": true, + "error": null + } + ``` + * **multi** Performs multiple actions in one request, returning an array with the response of each action (in the given order).