|
|
@ -5,10 +5,11 @@ CoviDok API accepts and sends JSON objects. The basic response structure is comp |
|
|
|
{ |
|
|
|
"version" : "1" |
|
|
|
"status": "OK/ERR" |
|
|
|
"response" : "Description/data" |
|
|
|
"body" : "Description/data" |
|
|
|
} |
|
|
|
|
|
|
|
The "response" field contains the actual content of the answer, while "status" indicates if the request was successful (value is either ERR or OK). |
|
|
|
Error codes coming soon. |
|
|
|
|
|
|
|
# Accepted calls |
|
|
|
|
|
|
@ -25,12 +26,21 @@ Login authentication. Requires account login info, returns a session ID and the |
|
|
|
|
|
|
|
### POST /api/Auth |
|
|
|
|
|
|
|
Registration call. |
|
|
|
Registration call. Returns with the type and ID of the created entity. |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "firstName": string,<br> "lastName": string,<br> "email": string,<br> "password": string,<br> "role": "Doc/Ast/Par"<br>}| |
|
|
|
|Response|None| |
|
|
|
|Response|{<br> "role": "Doc/ast/Par",<br> "ID": string}| |
|
|
|
|
|
|
|
### POST /api/Auth/child |
|
|
|
|
|
|
|
Adds a child to a parent. A parent can only add children to its own account (Parent is determined from session IDs). |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "id": sessionID,<br> "firstName": string,<br> "lastName": string,<br> "birthDate": string,<br> "socSecNum": string<br>}| |
|
|
|
|Response|{<br> "ChildID": Child.Id<br>}| |
|
|
|
|
|
|
|
## Doc |
|
|
|
|
|
|
@ -61,13 +71,22 @@ Lists childern with onging or finished cases assigned to a doctor. |
|
|
|
|Request|{<br> "id": sessionID<br>}| |
|
|
|
|Response|{[<br> "firstName": Child.Firstname,<br> "lastName" : Child.Lastname,<br> "id" : Child.Id], ...<br>}| |
|
|
|
|
|
|
|
## Parent |
|
|
|
|
|
|
|
### POST /api/Parent/child |
|
|
|
## Case |
|
|
|
|
|
|
|
### POST /api/Case/{id}/certreq |
|
|
|
|
|
|
|
Posts a request for health certification. Must be related to a closed Task (represented by TaskID). |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "id": SessionID,<br>}| |
|
|
|
|Response|{<br> "certID": string<br>}| |
|
|
|
|
|
|
|
### GET /api/Case/{id}/certreq |
|
|
|
|
|
|
|
Adds a child to a parent. A parent can only add children to its own account (Enforced on server side). |
|
|
|
Check status of health certification. Must be related to a closed Task (represented by TaskID). |
|
|
|
|
|
|
|
|Type|JSON| |
|
|
|
|-----|-----| |
|
|
|
|Request|{<br> "id": sessionID,<br> "firstName": string,<br> "lastName": string<br>}| |
|
|
|
|Response|{<br> "ChildID": Child.Id<br>}| |
|
|
|
|Request|{<br> "id": SessionID,<br>}| |