Appearance
API calls for practise
NOT IMPLEMENTED
The API calls for practise are not implemented yet.
1. Get Status
Endpoint:
GET /practise/statusExample API Call:
json
{
"Headers": {},
"Body": {}
}2. Get All Practise
Endpoint:
GET /practiseExample API Call:
json
{
"Headers": {},
"Body": {}
}3. Get specific practise
Endpoint:
GET /practise/:practiseIdExample API Call:
json
{
"Params": {
"practiseId": "5f9b3b5b9c9d440000f3b3b5"
},
"Headers": {},
"Body": {}
}4. Sumbit practise
Endpoint:
POST /practise/completed/:practiseIdExample API Call:
json
{
"Params": {
"practiseId": "5f9b3b5b9c9d440000f3b3b5"
},
"Headers": {
"userId": "1",
"token": "token"
},
"Body": {}
}