From 9b62e2f4f4102ed80558b87eb448ebb5a1bdb204 Mon Sep 17 00:00:00 2001 From: dietmaroc Date: Tue, 24 Sep 2013 02:08:06 +0200 Subject: [PATCH] Delete prob --- intro_manual/prob | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 intro_manual/prob diff --git a/intro_manual/prob b/intro_manual/prob deleted file mode 100644 index e9395a9e6..000000000 --- a/intro_manual/prob +++ /dev/null @@ -1,34 +0,0 @@ -users / adduser -=============== - -Create a new user on the cloud server. Only authenticated administrator users are allowed to access this method. Authentication is done by sending a basic HTTP authentication header. -* syntax: /v1/cloud/users -* HTTP method: POST -* POST argument: userid - string, the required username for the new user -* POST argument: password - string, the required password for the new user -* Statuscodes: -** 100 - successful -** 101 - invalid input data -** 102 - username already in user -** 103 - unknown error occurred whilst adding the user - -:: - -Example: - -* POST http://frank:password@myowncloud.org/ocs/v1.php/cloud/users -d user="Frank" -d password="frankspassword" -* Creates the user 'Frank' with password 'frankspassword' -* And the following XML-output - -:: - -**XML-Output:** - - - - ok - 100 - - - -