diff --git a/API.md b/API.md
index 900aecc..adb59f3 100644
--- a/API.md
+++ b/API.md
@@ -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|{
"email" : string,
"password": string
}|
-|Response|{
"id" : SessionID,
"firstName": x.Firstname,
"lastName": x.Lastname,
"role": "Doc|Ast|Par"
}|
+|Response|{
"id" : SessionID,
"firstName": x.Firstname,
"lastName": x.Lastname,
"role": "Doc/Ast/Par"
}|
### POST /api/Auth
+
Registration call.
-|Request|{
"firstName": string,
"lastName": string,
"email": string,
"password": string,
"role": "Doc|Ast|Par"
}|
+
+|Type|JSON|
+|-----|-----|
+|Request|{
"firstName": string,
"lastName": string,
"email": string,
"password": string,
"role": "Doc/Ast/Par"
}|
|Response|None|
## Doc
### GET /api/Doc
+
Lists all registered doctors in the system. Might be filterable in the future.
+
+|Type|JSON|
+|-----|-----|
|Request|{
"id": sessionID
}|
|Response|{[[doc.Firstname, doc.Lastname, doc.Id], ...]}
### GET /api/Doc/{id}/assistants
+
Lists assistants for a specific doctor.
+
+|Type|JSON|
+|-----|-----|
|Request|{
"id": sessionID
}|
|Response|{[
"firstName": Assistant.Firstname,
"lastName" : Assistant.Lastname,
"id" : Assistant.Id], ...
}|
### GET /api/Doc/{id}/children
+
Lists childern with onging or finished cases assigned to a doctor.
+
+|Type|JSON|
+|-----|-----|
|Request|{
"id": sessionID
}|
|Response|{[
"firstName": Child.Firstname,
"lastName" : Child.Lastname,
"id" : Child.Id], ...
}|
## 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|{
"id": sessionID,
"firstName": string,
"lastName": string
}|
|Response|{
"ChildID": Child.Id
}|
\ No newline at end of file