summary refs log tree commit diff
path: root/docs/client-server/swagger_matrix/registration
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-09-01 14:05:28 +0100
committerKegan Dougal <kegan@matrix.org>2014-09-01 14:05:28 +0100
commit51b0b5c5ab3b2e7669fbaef9226057d425d52ce3 (patch)
treebd36909ba8504db217960366e3a17f8446ed6a9d /docs/client-server/swagger_matrix/registration
parentadd another public wishlist item (diff)
downloadsynapse-51b0b5c5ab3b2e7669fbaef9226057d425d52ce3.tar.xz
Renamed json files because: paths.
Diffstat (limited to 'docs/client-server/swagger_matrix/registration')
-rw-r--r--docs/client-server/swagger_matrix/registration75
1 files changed, 0 insertions, 75 deletions
diff --git a/docs/client-server/swagger_matrix/registration b/docs/client-server/swagger_matrix/registration
deleted file mode 100644
index 2048aec1d2..0000000000
--- a/docs/client-server/swagger_matrix/registration
+++ /dev/null
@@ -1,75 +0,0 @@
-{
-  "apiVersion": "1.0.0", 
-  "apis": [
-    {
-      "operations": [
-        {
-          "method": "POST", 
-          "nickname": "register", 
-          "notes": "Volatile: This API is likely to change.", 
-          "parameters": [
-            {
-              "description": "A registration request", 
-              "name": "body", 
-              "paramType": "body", 
-              "required": true, 
-              "type": "RegistrationRequest"
-            }
-          ], 
-          "responseMessages": [
-            {
-              "code": 400, 
-              "message": "No JSON object."
-            }, 
-            {
-              "code": 400, 
-              "message": "User ID must only contain characters which do not require url encoding."
-            },
-            {
-              "code": 400, 
-              "message": "User ID already taken."
-            }
-          ], 
-          "summary": "Register with the home server.", 
-          "type": "RegistrationResponse"
-        }
-      ], 
-      "path": "/register"
-    }
-  ], 
-  "basePath": "http://localhost:8080/_matrix/client/api/v1", 
-  "consumes": [
-    "application/json"
-  ], 
-  "models": {
-    "RegistrationResponse": {
-      "id": "RegistrationResponse", 
-      "properties": {
-        "access_token": {
-          "description": "The access token for this user.", 
-          "type": "string"
-        }, 
-        "user_id": {
-          "description": "The fully-qualified user ID.", 
-          "type": "string"
-        }
-      }
-    }, 
-    "RegistrationRequest": {
-      "id": "RegistrationRequest", 
-      "properties": {
-        "user_id": {
-          "description": "The desired user ID. If not specified, a random user ID will be allocated.", 
-          "type": "string",
-          "required": false
-        }
-      }
-    }
-  }, 
-  "produces": [
-    "application/json"
-  ], 
-  "resourcePath": "/register", 
-  "swaggerVersion": "1.2"
-}
-