Browse Source

Update 'API.md'

Fix format of API.md
master
trinitas 5 years ago
parent
commit
262c65e8da
  1. 28
      API.md

28
API.md

@ -15,35 +15,59 @@ The "response" field contains the actual content of the answer, while "status" i
## Auth ## Auth
### GET /api/Auth ### GET /api/Auth
Login authentication. Requires account login info, returns a session ID and the ientity of the logged in entity. Login authentication. Requires account login info, returns a session ID and the ientity of the logged in entity.
|Type|JSON|
|-----|-----|
|Request|{<br> "email" : string,<br> "password": string<br>}| |Request|{<br> "email" : string,<br> "password": string<br>}|
|Response|{<br> "id" : SessionID,<br> "firstName": x.Firstname,<br> "lastName": x.Lastname,<br> "role": "Doc|Ast|Par"<br>}| |Response|{<br> "id" : SessionID,<br> "firstName": x.Firstname,<br> "lastName": x.Lastname,<br> "role": "Doc/Ast/Par"<br>}|
### POST /api/Auth ### POST /api/Auth
Registration call. Registration call.
|Request|{<br> "firstName": string,<br> "lastName": string,<br> "email": string,<br> "password": string,<br> "role": "Doc|Ast|Par"<br>}|
|Type|JSON|
|-----|-----|
|Request|{<br> "firstName": string,<br> "lastName": string,<br> "email": string,<br> "password": string,<br> "role": "Doc/Ast/Par"<br>}|
|Response|None| |Response|None|
## Doc ## Doc
### GET /api/Doc ### GET /api/Doc
Lists all registered doctors in the system. Might be filterable in the future. Lists all registered doctors in the system. Might be filterable in the future.
|Type|JSON|
|-----|-----|
|Request|{<br> "id": sessionID<br>}| |Request|{<br> "id": sessionID<br>}|
|Response|{[[doc.Firstname, doc.Lastname, doc.Id], ...]} |Response|{[[doc.Firstname, doc.Lastname, doc.Id], ...]}
### GET /api/Doc/{id}/assistants ### GET /api/Doc/{id}/assistants
Lists assistants for a specific doctor. Lists assistants for a specific doctor.
|Type|JSON|
|-----|-----|
|Request|{<br> "id": sessionID<br>}| |Request|{<br> "id": sessionID<br>}|
|Response|{[<br> "firstName": Assistant.Firstname,<br> "lastName" : Assistant.Lastname,<br> "id" : Assistant.Id], ...<br>}| |Response|{[<br> "firstName": Assistant.Firstname,<br> "lastName" : Assistant.Lastname,<br> "id" : Assistant.Id], ...<br>}|
### GET /api/Doc/{id}/children ### GET /api/Doc/{id}/children
Lists childern with onging or finished cases assigned to a doctor. Lists childern with onging or finished cases assigned to a doctor.
|Type|JSON|
|-----|-----|
|Request|{<br> "id": sessionID<br>}| |Request|{<br> "id": sessionID<br>}|
|Response|{[<br> "firstName": Child.Firstname,<br> "lastName" : Child.Lastname,<br> "id" : Child.Id], ...<br>}| |Response|{[<br> "firstName": Child.Firstname,<br> "lastName" : Child.Lastname,<br> "id" : Child.Id], ...<br>}|
## Parent ## Parent
### POST /api/Parent/child ### POST /api/Parent/child
Adds a child to a parent. A parent can only add children to its own account (Enforced on server side). Adds a child to a parent. A parent can only add children to its own account (Enforced on server side).
|Type|JSON|
|-----|-----|
|Request|{<br> "id": sessionID,<br> "firstName": string,<br> "lastName": string<br>}| |Request|{<br> "id": sessionID,<br> "firstName": string,<br> "lastName": string<br>}|
|Response|{<br> "ChildID": Child.Id<br>}| |Response|{<br> "ChildID": Child.Id<br>}|
Loading…
Cancel
Save