express-api-example/docs/api_data.json

321 lines
7.3 KiB
JSON
Raw Normal View History

2018-11-12 15:26:44 +00:00
[
2018-11-12 17:19:39 +00:00
{
"type": "post",
"url": "/auth/login",
2018-11-14 17:16:00 +00:00
"title": "Get access token",
2018-11-12 17:19:39 +00:00
"name": "Login",
"group": "Auth",
"parameter": {
"fields": {
"Parameter": [
{
"group": "Parameter",
"type": "String",
"optional": false,
"field": "username",
"description": "<p>username of the user.</p>"
},
{
"group": "Parameter",
"type": "String",
"optional": false,
"field": "password",
"description": "<p>password of the user.</p>"
}
]
}
},
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
"type": "string",
"optional": false,
2018-11-14 17:16:00 +00:00
"field": "jwt_token",
2018-11-12 17:19:39 +00:00
"description": "<p>JWT token.</p>"
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/auth/index.js",
"groupTitle": "Auth"
},
{
"type": "post",
"url": "/auth/register",
"title": "Register",
"name": "Register",
"group": "Auth",
"parameter": {
"fields": {
"Parameter": [
{
"group": "Parameter",
"type": "String",
"optional": false,
"field": "firstname",
"description": "<p>Firstname of the user.</p>"
},
{
"group": "Parameter",
"type": "String",
"optional": false,
"field": "lastname",
"description": "<p>Lastname of the user.</p>"
},
{
"group": "Parameter",
"type": "String",
"optional": false,
"field": "username",
"description": "<p>username of the user.</p>"
},
{
"group": "Parameter",
"type": "String",
"optional": false,
"field": "password",
"description": "<p>password of the user.</p>"
}
]
}
},
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
"type": "Array",
"optional": false,
"field": "Array",
"description": "<p>Array of Note objects.</p>"
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/auth/index.js",
"groupTitle": "Auth"
},
{
"type": "post",
"url": "/note",
"title": "Create note",
"name": "CreateNote",
"group": "Note",
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
"type": "Object",
"optional": false,
"field": "Object",
"description": "<p>Created note.</p>"
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/note/index.js",
"groupTitle": "Note"
},
{
"type": "delete",
"url": "/note/:id",
2018-11-14 17:16:00 +00:00
"title": "Delete note",
2018-11-12 17:19:39 +00:00
"name": "DeleteNote",
"group": "Note",
2018-11-14 17:16:00 +00:00
"parameter": {
2018-11-12 15:26:44 +00:00
"fields": {
2018-11-14 17:16:00 +00:00
"Parameter": [
2018-11-12 15:26:44 +00:00
{
2018-11-14 17:16:00 +00:00
"group": "Parameter",
"type": "String",
2018-11-12 15:26:44 +00:00
"optional": false,
2018-11-14 17:16:00 +00:00
"field": "id",
"description": "<p>Note unique ID.</p>"
2018-11-12 15:26:44 +00:00
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/note/index.js",
"groupTitle": "Note"
},
{
"type": "get",
"url": "/note/:id",
2018-11-14 17:16:00 +00:00
"title": "Get note",
2018-11-12 15:26:44 +00:00
"name": "GetNotes",
"group": "Note",
"parameter": {
"fields": {
"Parameter": [
{
"group": "Parameter",
2018-11-14 17:16:00 +00:00
"type": "String",
2018-11-12 15:26:44 +00:00
"optional": false,
"field": "id",
2018-11-14 17:16:00 +00:00
"description": "<p>Note unique ID.</p>"
2018-11-12 15:26:44 +00:00
}
]
}
},
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
"type": "string",
"optional": false,
"field": "title",
"description": "<p>Title of the note.</p>"
},
{
"group": "Success 200",
"type": "string",
"optional": false,
"field": "text",
"description": "<p>Text of the note.</p>"
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/note/index.js",
"groupTitle": "Note"
},
2018-11-12 17:19:39 +00:00
{
2018-11-14 17:16:00 +00:00
"type": "put",
"url": "/note/:id",
"title": "Update note",
"name": "UpdateNote",
"group": "Note",
2018-11-12 17:19:39 +00:00
"parameter": {
"fields": {
"Parameter": [
{
"group": "Parameter",
"type": "String",
"optional": false,
2018-11-12 15:26:44 +00:00
"field": "id",
2018-11-14 17:16:00 +00:00
"description": "<p>Note unique ID.</p>"
2018-11-12 15:26:44 +00:00
}
]
}
},
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
2018-11-14 17:16:00 +00:00
"type": "Object",
2018-11-12 15:26:44 +00:00
"optional": false,
2018-11-14 17:16:00 +00:00
"field": "Object",
"description": "<p>Updated note.</p>"
2018-11-12 15:26:44 +00:00
}
]
}
},
"version": "0.0.0",
2018-11-14 17:16:00 +00:00
"filename": "app/routes/note/index.js",
"groupTitle": "Note"
},
{
"type": "delete",
"url": "/user/me",
"title": "Delete account",
"name": "DeleteUser",
"group": "User",
"version": "0.0.0",
2018-11-12 15:26:44 +00:00
"filename": "app/routes/user/index.js",
"groupTitle": "User"
},
2018-11-12 17:19:39 +00:00
{
"type": "get",
"url": "/user/me",
2018-11-14 17:16:00 +00:00
"title": "Get user information",
2018-11-12 17:19:39 +00:00
"name": "GetUser",
"group": "User",
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
"type": "String",
"optional": false,
"field": "firstname",
"description": "<p>Firstname of the User.</p>"
},
{
"group": "Success 200",
"type": "String",
"optional": false,
"field": "lastname",
"description": "<p>Lastname of the User.</p>"
},
{
"group": "Success 200",
"type": "String",
"optional": false,
"field": "username",
"description": "<p>Username of the User.</p>"
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/user/index.js",
"groupTitle": "User"
},
{
"type": "put",
"url": "/user/me",
2018-11-14 17:16:00 +00:00
"title": "Update account information",
2018-11-12 17:19:39 +00:00
"name": "UpdateUser",
"group": "User",
2018-11-14 17:16:00 +00:00
"success": {
2018-11-12 17:19:39 +00:00
"fields": {
2018-11-14 17:16:00 +00:00
"Success 200": [
2018-11-12 17:19:39 +00:00
{
2018-11-14 17:16:00 +00:00
"group": "Success 200",
"type": "Object",
2018-11-12 17:19:39 +00:00
"optional": false,
2018-11-14 17:16:00 +00:00
"field": "user",
"description": "<p>User object.</p>"
2018-11-12 17:19:39 +00:00
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/user/index.js",
"groupTitle": "User"
},
{
"type": "get",
"url": "/user/me/notes",
2018-11-14 17:16:00 +00:00
"title": "Get all notes",
"name": "GetNotesByUserId",
"group": "User_notes",
2018-11-12 17:19:39 +00:00
"success": {
"fields": {
"Success 200": [
{
"group": "Success 200",
2018-11-14 17:16:00 +00:00
"type": "Array",
2018-11-12 17:19:39 +00:00
"optional": false,
2018-11-14 17:16:00 +00:00
"field": "Array",
"description": "<p>Notes of the user.</p>"
2018-11-12 17:19:39 +00:00
}
]
}
},
"version": "0.0.0",
"filename": "app/routes/user/index.js",
2018-11-14 17:16:00 +00:00
"groupTitle": "User_notes"
2018-11-12 15:26:44 +00:00
}
]