|
|
@ -15,35 +15,59 @@ The "response" field contains the actual content of the answer, while "status" i |
|
|
|
## Auth |
|
|
|
|
|
|
|
### GET /api/Auth |
|
|
|
|
|
|
|
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>}| |
|
|
|
|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 |
|
|
|
|
|
|
|
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| |
|
|
|
|
|
|
|
## Doc |
|
|
|
|
|
|
|
### GET /api/Doc |
|
|
|
|
|
|
|
Lists all registered doctors in the system. Might be filterable in the future. |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "id": sessionID<br>}| |
|
|
|
|Response|{[[doc.Firstname, doc.Lastname, doc.Id], ...]} |
|
|
|
|
|
|
|
### GET /api/Doc/{id}/assistants |
|
|
|
|
|
|
|
Lists assistants for a specific doctor. |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "id": sessionID<br>}| |
|
|
|
|Response|{[<br> "firstName": Assistant.Firstname,<br> "lastName" : Assistant.Lastname,<br> "id" : Assistant.Id], ...<br>}| |
|
|
|
|
|
|
|
### GET /api/Doc/{id}/children |
|
|
|
|
|
|
|
Lists childern with onging or finished cases assigned to a doctor. |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "id": sessionID<br>}| |
|
|
|
|Response|{[<br> "firstName": Child.Firstname,<br> "lastName" : Child.Lastname,<br> "id" : Child.Id], ...<br>}| |
|
|
|
|
|
|
|
## Parent |
|
|
|
|
|
|
|
### POST /api/Parent/child |
|
|
|
|
|
|
|
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>}| |
|
|
|
|Response|{<br> "ChildID": Child.Id<br>}| |