Doatask API v0.8

Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.

The doatask API description. Please note that due to a swagger limitation the relations of the entities are not correctly displayed.

Base URLs:

Default

LtiController_create

Code samples


fetch('/doatask/api/ltiadmin/platform',
{
  method: 'POST'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

POST /doatask/api/ltiadmin/platform

Responses

StatusMeaningDescriptionSchema
201CreatednoneNone

UsersController_create

Code samples

const inputBody = '{
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "ltiid": 0,
  "isActive": true
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/users',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

POST /doatask/api/users

Body parameter

{
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "ltiid": 0,
  "isActive": true
}
1
2
3
4
5
6
7
8
9

Parameters

NameInTypeRequiredDescription
bodybodyCreateUserDtotruenone

Example responses

201 Response

{
  "submissions": 0,
  "id": 0,
  "ltiid": 0,
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "isActive": true
}
1
2
3
4
5
6
7
8
9
10
11

Responses

StatusMeaningDescriptionSchema
201CreatednoneUser

UsersController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/users',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/users

Example responses

200 Response

[
  {
    "submissions": 0,
    "id": 0,
    "ltiid": 0,
    "name": "string",
    "password": "string",
    "email": "string",
    "role": "string",
    "origin": "string",
    "isActive": true
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[User]falsenonenone
» submissionsnumbertruenonenone
» idnumbertruenonenone
» ltiidnumbertruenonenone
» namestringtruenonenone
» passwordstringtruenonenone
» emailstringtruenonenone
» rolestringtruenonenone
» originstringtruenonenone
» isActivebooleantruenonenone

UsersController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/users/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/users/{id}

Parameters

NameInTypeRequiredDescription
idpathnumbertruenone

Example responses

200 Response

{
  "submissions": 0,
  "id": 0,
  "ltiid": 0,
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "isActive": true
}
1
2
3
4
5
6
7
8
9
10
11

Responses

StatusMeaningDescriptionSchema
200OKnoneUser

UsersController_update

Code samples

const inputBody = '{
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "ltiid": 0,
  "isActive": true
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/users/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

PATCH /doatask/api/users/{id}

Body parameter

{
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "ltiid": 0,
  "isActive": true
}
1
2
3
4
5
6
7
8
9

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyCreateUserDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

UsersController_remove

Code samples


fetch('/doatask/api/users/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/users/{id}

Parameters

NameInTypeRequiredDescription
idpathnumbertruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

TasksController_create

Code samples

const inputBody = '{
  "title": "string",
  "description": "string",
  "public": true,
  "plugin": "string",
  "details": {},
  "domain": 0,
  "tags": [
    "string"
  ],
  "rating": 0
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/tasks',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

POST /doatask/api/tasks

Body parameter

{
  "title": "string",
  "description": "string",
  "public": true,
  "plugin": "string",
  "details": {},
  "domain": 0,
  "tags": [
    "string"
  ],
  "rating": 0
}
1
2
3
4
5
6
7
8
9
10
11
12

Parameters

NameInTypeRequiredDescription
bodybodyCreateTaskDtotruenone

Example responses

201 Response

{
  "assignmentTasks": 0,
  "submissions": 0,
  "domain": 0,
  "owner": 0,
  "id": 0,
  "title": "string",
  "description": "string",
  "public": true,
  "rating": 0,
  "tags": [
    "string"
  ],
  "plugin": "string",
  "details": {},
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Responses

StatusMeaningDescriptionSchema
201CreatednoneTask

TasksController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/tasks',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/tasks

Example responses

200 Response

[
  {
    "assignmentTasks": 0,
    "submissions": 0,
    "domain": 0,
    "owner": 0,
    "id": 0,
    "title": "string",
    "description": "string",
    "public": true,
    "rating": 0,
    "tags": [
      "string"
    ],
    "plugin": "string",
    "details": {},
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Task]falsenonenone
» assignmentTasksnumbertruenonenone
» submissionsnumbertruenonenone
» domainnumbertruenonenone
» ownernumbertruenonenone
» idnumbertruenonenone
» titlestringtruenonenone
» descriptionstringtruenonenone
» publicbooleantruenonenone
» ratingnumbertruenonenone
» tags[string]truenonenone
» pluginstringtruenonenone
» detailsobjecttruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

TasksController_findUserAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/tasks/user/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/tasks/user/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

[
  {
    "assignmentTasks": 0,
    "submissions": 0,
    "domain": 0,
    "owner": 0,
    "id": 0,
    "title": "string",
    "description": "string",
    "public": true,
    "rating": 0,
    "tags": [
      "string"
    ],
    "plugin": "string",
    "details": {},
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Task]falsenonenone
» assignmentTasksnumbertruenonenone
» submissionsnumbertruenonenone
» domainnumbertruenonenone
» ownernumbertruenonenone
» idnumbertruenonenone
» titlestringtruenonenone
» descriptionstringtruenonenone
» publicbooleantruenonenone
» ratingnumbertruenonenone
» tags[string]truenonenone
» pluginstringtruenonenone
» detailsobjecttruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

TasksController_findStudentAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/tasks/student/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/tasks/student/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

[
  {
    "assignmentTasks": 0,
    "submissions": 0,
    "domain": 0,
    "owner": 0,
    "id": 0,
    "title": "string",
    "description": "string",
    "public": true,
    "rating": 0,
    "tags": [
      "string"
    ],
    "plugin": "string",
    "details": {},
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Task]falsenonenone
» assignmentTasksnumbertruenonenone
» submissionsnumbertruenonenone
» domainnumbertruenonenone
» ownernumbertruenonenone
» idnumbertruenonenone
» titlestringtruenonenone
» descriptionstringtruenonenone
» publicbooleantruenonenone
» ratingnumbertruenonenone
» tags[string]truenonenone
» pluginstringtruenonenone
» detailsobjecttruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

TasksController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/tasks/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/tasks/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "assignmentTasks": 0,
  "submissions": 0,
  "domain": 0,
  "owner": 0,
  "id": 0,
  "title": "string",
  "description": "string",
  "public": true,
  "rating": 0,
  "tags": [
    "string"
  ],
  "plugin": "string",
  "details": {},
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Responses

StatusMeaningDescriptionSchema
200OKnoneTask

TasksController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/tasks/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/tasks/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateTaskDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

TasksController_remove

Code samples


fetch('/doatask/api/tasks/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/tasks/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

AssignmentsController_create

Code samples

const inputBody = '{
  "title": "string",
  "description": "string",
  "dueDate": "2019-08-24T14:15:22Z"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/assignments',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

POST /doatask/api/assignments

Body parameter

{
  "title": "string",
  "description": "string",
  "dueDate": "2019-08-24T14:15:22Z"
}
1
2
3
4
5

Parameters

NameInTypeRequiredDescription
bodybodyCreateAssignmentDtotruenone

Example responses

201 Response

{
  "assignmentTasks": 0,
  "submissions": 0,
  "owner": 0,
  "id": 0,
  "title": "string",
  "description": "string",
  "type": "string",
  "public": true,
  "dueDate": "2019-08-24T14:15:22Z",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
201CreatednoneAssignment

AssignmentsController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/assignments',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/assignments

Example responses

200 Response

[
  {
    "assignmentTasks": 0,
    "submissions": 0,
    "owner": 0,
    "id": 0,
    "title": "string",
    "description": "string",
    "type": "string",
    "public": true,
    "dueDate": "2019-08-24T14:15:22Z",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Assignment]falsenonenone
» assignmentTasksnumbertruenonenone
» submissionsnumbertruenonenone
» ownernumbertruenonenone
» idnumbertruenonenone
» titlestringtruenonenone
» descriptionstringtruenonenone
» typestringtruenonenone
» publicbooleantruenonenone
» dueDatestring(date-time)truenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

AssignmentsController_findUserAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/assignments/user/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/assignments/user/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

[
  {
    "assignmentTasks": 0,
    "submissions": 0,
    "owner": 0,
    "id": 0,
    "title": "string",
    "description": "string",
    "type": "string",
    "public": true,
    "dueDate": "2019-08-24T14:15:22Z",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Assignment]falsenonenone
» assignmentTasksnumbertruenonenone
» submissionsnumbertruenonenone
» ownernumbertruenonenone
» idnumbertruenonenone
» titlestringtruenonenone
» descriptionstringtruenonenone
» typestringtruenonenone
» publicbooleantruenonenone
» dueDatestring(date-time)truenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

AssignmentsController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/assignments/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/assignments/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "assignmentTasks": 0,
  "submissions": 0,
  "owner": 0,
  "id": 0,
  "title": "string",
  "description": "string",
  "type": "string",
  "public": true,
  "dueDate": "2019-08-24T14:15:22Z",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
200OKnoneAssignment

AssignmentsController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/assignments/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/assignments/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateAssignmentDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

AssignmentsController_remove

Code samples


fetch('/doatask/api/assignments/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/assignments/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

AuthController_login

Code samples


fetch('/doatask/api/auth/login',
{
  method: 'POST'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

POST /doatask/api/auth/login

Responses

StatusMeaningDescriptionSchema
201CreatednoneNone

AuthController_ltilogin

Code samples


fetch('/doatask/api/auth/ltilogin',
{
  method: 'POST'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

POST /doatask/api/auth/ltilogin

Responses

StatusMeaningDescriptionSchema
201CreatednoneNone

AuthController_getProfile

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/auth/profile',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/auth/profile

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

AssignmentTasksController_create

Code samples

const inputBody = '{
  "taskId": 0,
  "assignmentId": 0,
  "order": 0,
  "weight": 0,
  "timeLimit": 0
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/assignmenttasks',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

POST /doatask/api/assignmenttasks

Body parameter

{
  "taskId": 0,
  "assignmentId": 0,
  "order": 0,
  "weight": 0,
  "timeLimit": 0
}
1
2
3
4
5
6
7

Parameters

NameInTypeRequiredDescription
bodybodyCreateAssignmentTaskDtotruenone

Example responses

201 Response

{
  "task": 0,
  "assignment": 0,
  "submissions": 0,
  "id": 0,
  "order": 0,
  "weight": 0,
  "timeLimit": 0,
  "taskId": 0,
  "assignmentId": 0,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
201CreatednoneAssignmentTask

AssignmentTasksController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/assignmenttasks',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/assignmenttasks

Example responses

200 Response

[
  {
    "task": 0,
    "assignment": 0,
    "submissions": 0,
    "id": 0,
    "order": 0,
    "weight": 0,
    "timeLimit": 0,
    "taskId": 0,
    "assignmentId": 0,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[AssignmentTask]falsenonenone
» tasknumbertruenonenone
» assignmentnumbertruenonenone
» submissionsnumbertruenonenone
» idnumbertruenonenone
» ordernumbertruenonenone
» weightnumbertruenonenone
» timeLimitnumbertruenonenone
» taskIdnumbertruenonenone
» assignmentIdnumbertruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

AssignmentTasksController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/assignmenttasks/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/assignmenttasks/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "task": 0,
  "assignment": 0,
  "submissions": 0,
  "id": 0,
  "order": 0,
  "weight": 0,
  "timeLimit": 0,
  "taskId": 0,
  "assignmentId": 0,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
200OKnoneAssignmentTask

AssignmentTasksController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/assignmenttasks/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/assignmenttasks/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateAssignmentTaskDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

AssignmentTasksController_remove

Code samples


fetch('/doatask/api/assignmenttasks/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/assignmenttasks/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

SubmissionsController_create

Code samples

const inputBody = '{
  "course": "string",
  "plugin": "string",
  "solution": {},
  "task": 0,
  "assignment": 0,
  "assignmentTask": 0,
  "user": 0,
  "level": "string",
  "rated": true
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/submissions',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

POST /doatask/api/submissions

Body parameter

{
  "course": "string",
  "plugin": "string",
  "solution": {},
  "task": 0,
  "assignment": 0,
  "assignmentTask": 0,
  "user": 0,
  "level": "string",
  "rated": true
}
1
2
3
4
5
6
7
8
9
10
11

Parameters

NameInTypeRequiredDescription
bodybodyCreateSubmissionDtotruenone

Example responses

201 Response

{
  "task": 0,
  "assignmentTask": 0,
  "assignment": 0,
  "user": 0,
  "id": 0,
  "course": "string",
  "plugin": "string",
  "solution": {},
  "grade": 0,
  "feedback": {},
  "rated": true,
  "rating": 0,
  "level": {},
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

Responses

StatusMeaningDescriptionSchema
201CreatednoneSubmission

SubmissionsController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/submissions',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/submissions

Example responses

200 Response

[
  {
    "task": 0,
    "assignmentTask": 0,
    "assignment": 0,
    "user": 0,
    "id": 0,
    "course": "string",
    "plugin": "string",
    "solution": {},
    "grade": 0,
    "feedback": {},
    "rated": true,
    "rating": 0,
    "level": {},
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Submission]falsenonenone
» tasknumbertruenonenone
» assignmentTasknumbertruenonenone
» assignmentnumbertruenonenone
» usernumbertruenonenone
» idnumbertruenonenone
» coursestringtruenonenone
» pluginstringtruenonenone
» solutionobjecttruenonenone
» gradenumbertruenonenone
» feedbackobjecttruenonenone
» ratedbooleantruenonenone
» ratingnumbertruenonenone
» levelobjecttruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

SubmissionsController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/submissions/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/submissions/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "task": 0,
  "assignmentTask": 0,
  "assignment": 0,
  "user": 0,
  "id": 0,
  "course": "string",
  "plugin": "string",
  "solution": {},
  "grade": 0,
  "feedback": {},
  "rated": true,
  "rating": 0,
  "level": {},
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

Responses

StatusMeaningDescriptionSchema
200OKnoneSubmission

SubmissionsController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/submissions/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/submissions/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateSubmissionDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

SubmissionsController_remove

Code samples


fetch('/doatask/api/submissions/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/submissions/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

DomainsController_create

Code samples

const inputBody = '{
  "name": "string",
  "description": "string"
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/domains',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

POST /doatask/api/domains

Body parameter

{
  "name": "string",
  "description": "string"
}
1
2
3
4

Parameters

NameInTypeRequiredDescription
bodybodyCreateDomainDtotruenone

Example responses

201 Response

{
  "tasks": 0,
  "id": 0,
  "name": "string",
  "description": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8

Responses

StatusMeaningDescriptionSchema
201CreatednoneDomain

DomainsController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/domains',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/domains

Example responses

200 Response

[
  {
    "tasks": 0,
    "id": 0,
    "name": "string",
    "description": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Domain]falsenonenone
» tasksnumbertruenonenone
» idnumbertruenonenone
» namestringtruenonenone
» descriptionstringtruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

DomainsController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/domains/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/domains/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "tasks": 0,
  "id": 0,
  "name": "string",
  "description": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8

Responses

StatusMeaningDescriptionSchema
200OKnoneDomain

DomainsController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/domains/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/domains/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateDomainDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

DomainsController_remove

Code samples


fetch('/doatask/api/domains/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/domains/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

RatingsController_create

Code samples

const inputBody = '{
  "type": "string",
  "ownerid": 0,
  "domain": 0,
  "value": 0,
  "deviation": 0,
  "volatility": 0,
  "result": 0,
  "latest": true
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/ratings',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

POST /doatask/api/ratings

Body parameter

{
  "type": "string",
  "ownerid": 0,
  "domain": 0,
  "value": 0,
  "deviation": 0,
  "volatility": 0,
  "result": 0,
  "latest": true
}
1
2
3
4
5
6
7
8
9
10

Parameters

NameInTypeRequiredDescription
bodybodyCreateRatingDtotruenone

Example responses

201 Response

{
  "domain": 0,
  "id": 0,
  "type": "string",
  "ownerid": 0,
  "value": 0,
  "deviation": 0,
  "volatility": 0,
  "result": 0,
  "latest": true,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
201CreatednoneRating

RatingsController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/ratings',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/ratings

Example responses

200 Response

[
  {
    "domain": 0,
    "id": 0,
    "type": "string",
    "ownerid": 0,
    "value": 0,
    "deviation": 0,
    "volatility": 0,
    "result": 0,
    "latest": true,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Rating]falsenonenone
» domainnumbertruenonenone
» idnumbertruenonenone
» typestringtruenonenone
» owneridnumbertruenonenone
» valuenumbertruenonenone
» deviationnumbertruenonenone
» volatilitynumbertruenonenone
» resultnumbertruenonenone
» latestbooleantruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

RatingsController_findUserAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/ratings/user/{id}/all',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/ratings/user/{id}/all

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

[
  {
    "domain": 0,
    "id": 0,
    "type": "string",
    "ownerid": 0,
    "value": 0,
    "deviation": 0,
    "volatility": 0,
    "result": 0,
    "latest": true,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Rating]falsenonenone
» domainnumbertruenonenone
» idnumbertruenonenone
» typestringtruenonenone
» owneridnumbertruenonenone
» valuenumbertruenonenone
» deviationnumbertruenonenone
» volatilitynumbertruenonenone
» resultnumbertruenonenone
» latestbooleantruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

RatingsController_findUserLatest

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/ratings/user/{id}/latest',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/ratings/user/{id}/latest

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

[
  {
    "domain": 0,
    "id": 0,
    "type": "string",
    "ownerid": 0,
    "value": 0,
    "deviation": 0,
    "volatility": 0,
    "result": 0,
    "latest": true,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Rating]falsenonenone
» domainnumbertruenonenone
» idnumbertruenonenone
» typestringtruenonenone
» owneridnumbertruenonenone
» valuenumbertruenonenone
» deviationnumbertruenonenone
» volatilitynumbertruenonenone
» resultnumbertruenonenone
» latestbooleantruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

RatingsController_getTop

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/ratings/top/{count}/{domainid}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/ratings/top/{count}/{domainid}

Parameters

NameInTypeRequiredDescription
countpathnumbertruenone
domainidpathnumbertruenone

Example responses

200 Response

[
  {
    "domain": 0,
    "id": 0,
    "type": "string",
    "ownerid": 0,
    "value": 0,
    "deviation": 0,
    "volatility": 0,
    "result": 0,
    "latest": true,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Rating]falsenonenone
» domainnumbertruenonenone
» idnumbertruenonenone
» typestringtruenonenone
» owneridnumbertruenonenone
» valuenumbertruenonenone
» deviationnumbertruenonenone
» volatilitynumbertruenonenone
» resultnumbertruenonenone
» latestbooleantruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

RatingsController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/ratings/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/ratings/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "domain": 0,
  "id": 0,
  "type": "string",
  "ownerid": 0,
  "value": 0,
  "deviation": 0,
  "volatility": 0,
  "result": 0,
  "latest": true,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Responses

StatusMeaningDescriptionSchema
200OKnoneRating

RatingsController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/ratings/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/ratings/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateRatingDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

RatingsController_remove

Code samples


fetch('/doatask/api/ratings/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/ratings/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

CommentsController_create

Code samples

const inputBody = '{
  "content": "string",
  "stars": 0,
  "owner": 0,
  "task": 0
}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/comments',
{
  method: 'POST',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

POST /doatask/api/comments

Body parameter

{
  "content": "string",
  "stars": 0,
  "owner": 0,
  "task": 0
}
1
2
3
4
5
6

Parameters

NameInTypeRequiredDescription
bodybodyCreateCommentDtotruenone

Example responses

201 Response

{
  "owner": 0,
  "task": 0,
  "id": 0,
  "content": "string",
  "stars": 0,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9

Responses

StatusMeaningDescriptionSchema
201CreatednoneComment

CommentsController_findAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/comments',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/comments

Example responses

200 Response

[
  {
    "owner": 0,
    "task": 0,
    "id": 0,
    "content": "string",
    "stars": 0,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Comment]falsenonenone
» ownernumbertruenonenone
» tasknumbertruenonenone
» idnumbertruenonenone
» contentstringtruenonenone
» starsnumbertruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

CommentsController_findTaskAll

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/comments/task/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/comments/task/{id}

Parameters

NameInTypeRequiredDescription
idpathnumbertruenone

Example responses

200 Response

[
  {
    "owner": 0,
    "task": 0,
    "id": 0,
    "content": "string",
    "stars": 0,
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
]
1
2
3
4
5
6
7
8
9
10
11

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
anonymous[Comment]falsenonenone
» ownernumbertruenonenone
» tasknumbertruenonenone
» idnumbertruenonenone
» contentstringtruenonenone
» starsnumbertruenonenone
» createdAtstring(date-time)truenonenone
» updatedAtstring(date-time)truenonenone

CommentsController_findOne

Code samples


const headers = {
  'Accept':'application/json'
};

fetch('/doatask/api/comments/{id}',
{
  method: 'GET',

  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

GET /doatask/api/comments/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Example responses

200 Response

{
  "owner": 0,
  "task": 0,
  "id": 0,
  "content": "string",
  "stars": 0,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}
1
2
3
4
5
6
7
8
9

Responses

StatusMeaningDescriptionSchema
200OKnoneComment

CommentsController_update

Code samples

const inputBody = '{}';
const headers = {
  'Content-Type':'application/json',
  'Accept':'application/json'
};

fetch('/doatask/api/comments/{id}',
{
  method: 'PATCH',
  body: inputBody,
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

PATCH /doatask/api/comments/{id}

Body parameter

{}
1

Parameters

NameInTypeRequiredDescription
idpathstringtruenone
bodybodyUpdateCommentDtotruenone

Example responses

200 Response

{}
1

Responses

StatusMeaningDescriptionSchema
200OKnoneInline

Response Schema

CommentsController_remove

Code samples


fetch('/doatask/api/comments/{id}',
{
  method: 'DELETE'

})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});

1
2
3
4
5
6
7
8
9
10
11
12

DELETE /doatask/api/comments/{id}

Parameters

NameInTypeRequiredDescription
idpathstringtruenone

Responses

StatusMeaningDescriptionSchema
200OKnoneNone

Schemas

CreateUserDto

{
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "ltiid": 0,
  "isActive": true
}

1
2
3
4
5
6
7
8
9
10

Properties

NameTypeRequiredRestrictionsDescription
namestringtruenonenone
passwordstringfalsenonenone
emailstringfalsenonenone
rolestringtruenonenone
originstringtruenonenone
ltiidnumberfalsenonenone
isActivebooleanfalsenonenone

User

{
  "submissions": 0,
  "id": 0,
  "ltiid": 0,
  "name": "string",
  "password": "string",
  "email": "string",
  "role": "string",
  "origin": "string",
  "isActive": true
}

1
2
3
4
5
6
7
8
9
10
11
12

Properties

NameTypeRequiredRestrictionsDescription
submissionsnumbertruenonenone
idnumbertruenonenone
ltiidnumbertruenonenone
namestringtruenonenone
passwordstringtruenonenone
emailstringtruenonenone
rolestringtruenonenone
originstringtruenonenone
isActivebooleantruenonenone

CreateTaskDto

{
  "title": "string",
  "description": "string",
  "public": true,
  "plugin": "string",
  "details": {},
  "domain": 0,
  "tags": [
    "string"
  ],
  "rating": 0
}

1
2
3
4
5
6
7
8
9
10
11
12
13

Properties

NameTypeRequiredRestrictionsDescription
titlestringtruenonenone
descriptionstringtruenonenone
publicbooleantruenonenone
pluginstringtruenonenone
detailsobjecttruenonenone
domainnumbertruenonenone
tags[string]falsenonenone
ratingnumberfalsenonenone

Task

{
  "assignmentTasks": 0,
  "submissions": 0,
  "domain": 0,
  "owner": 0,
  "id": 0,
  "title": "string",
  "description": "string",
  "public": true,
  "rating": 0,
  "tags": [
    "string"
  ],
  "plugin": "string",
  "details": {},
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

Properties

NameTypeRequiredRestrictionsDescription
assignmentTasksnumbertruenonenone
submissionsnumbertruenonenone
domainnumbertruenonenone
ownernumbertruenonenone
idnumbertruenonenone
titlestringtruenonenone
descriptionstringtruenonenone
publicbooleantruenonenone
ratingnumbertruenonenone
tags[string]truenonenone
pluginstringtruenonenone
detailsobjecttruenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateTaskDto

{}

1
2

Properties

None

CreateAssignmentDto

{
  "title": "string",
  "description": "string",
  "dueDate": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6

Properties

NameTypeRequiredRestrictionsDescription
titlestringtruenonenone
descriptionstringtruenonenone
dueDatestring(date-time)truenonenone

Assignment

{
  "assignmentTasks": 0,
  "submissions": 0,
  "owner": 0,
  "id": 0,
  "title": "string",
  "description": "string",
  "type": "string",
  "public": true,
  "dueDate": "2019-08-24T14:15:22Z",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14

Properties

NameTypeRequiredRestrictionsDescription
assignmentTasksnumbertruenonenone
submissionsnumbertruenonenone
ownernumbertruenonenone
idnumbertruenonenone
titlestringtruenonenone
descriptionstringtruenonenone
typestringtruenonenone
publicbooleantruenonenone
dueDatestring(date-time)truenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateAssignmentDto

{}

1
2

Properties

None

CreateAssignmentTaskDto

{
  "taskId": 0,
  "assignmentId": 0,
  "order": 0,
  "weight": 0,
  "timeLimit": 0
}

1
2
3
4
5
6
7
8

Properties

NameTypeRequiredRestrictionsDescription
taskIdnumbertruenonenone
assignmentIdnumbertruenonenone
ordernumbertruenonenone
weightnumbertruenonenone
timeLimitnumbertruenonenone

AssignmentTask

{
  "task": 0,
  "assignment": 0,
  "submissions": 0,
  "id": 0,
  "order": 0,
  "weight": 0,
  "timeLimit": 0,
  "taskId": 0,
  "assignmentId": 0,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14

Properties

NameTypeRequiredRestrictionsDescription
tasknumbertruenonenone
assignmentnumbertruenonenone
submissionsnumbertruenonenone
idnumbertruenonenone
ordernumbertruenonenone
weightnumbertruenonenone
timeLimitnumbertruenonenone
taskIdnumbertruenonenone
assignmentIdnumbertruenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateAssignmentTaskDto

{}

1
2

Properties

None

CreateSubmissionDto

{
  "course": "string",
  "plugin": "string",
  "solution": {},
  "task": 0,
  "assignment": 0,
  "assignmentTask": 0,
  "user": 0,
  "level": "string",
  "rated": true
}

1
2
3
4
5
6
7
8
9
10
11
12

Properties

NameTypeRequiredRestrictionsDescription
coursestringtruenonenone
pluginstringtruenonenone
solutionobjecttruenonenone
tasknumbertruenonenone
assignmentnumbertruenonenone
assignmentTasknumbertruenonenone
usernumbertruenonenone
levelstringfalsenonenone
ratedbooleantruenonenone

Submission

{
  "task": 0,
  "assignmentTask": 0,
  "assignment": 0,
  "user": 0,
  "id": 0,
  "course": "string",
  "plugin": "string",
  "solution": {},
  "grade": 0,
  "feedback": {},
  "rated": true,
  "rating": 0,
  "level": {},
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

Properties

NameTypeRequiredRestrictionsDescription
tasknumbertruenonenone
assignmentTasknumbertruenonenone
assignmentnumbertruenonenone
usernumbertruenonenone
idnumbertruenonenone
coursestringtruenonenone
pluginstringtruenonenone
solutionobjecttruenonenone
gradenumbertruenonenone
feedbackobjecttruenonenone
ratedbooleantruenonenone
ratingnumbertruenonenone
levelobjecttruenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateSubmissionDto

{}

1
2

Properties

None

CreateDomainDto

{
  "name": "string",
  "description": "string"
}

1
2
3
4
5

Properties

NameTypeRequiredRestrictionsDescription
namestringtruenonenone
descriptionstringtruenonenone

Domain

{
  "tasks": 0,
  "id": 0,
  "name": "string",
  "description": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9

Properties

NameTypeRequiredRestrictionsDescription
tasksnumbertruenonenone
idnumbertruenonenone
namestringtruenonenone
descriptionstringtruenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateDomainDto

{}

1
2

Properties

None

CreateRatingDto

{
  "type": "string",
  "ownerid": 0,
  "domain": 0,
  "value": 0,
  "deviation": 0,
  "volatility": 0,
  "result": 0,
  "latest": true
}

1
2
3
4
5
6
7
8
9
10
11

Properties

NameTypeRequiredRestrictionsDescription
typestringtruenonenone
owneridnumbertruenonenone
domainnumbertruenonenone
valuenumbertruenonenone
deviationnumbertruenonenone
volatilitynumbertruenonenone
resultnumbertruenonenone
latestbooleanfalsenonenone

Rating

{
  "domain": 0,
  "id": 0,
  "type": "string",
  "ownerid": 0,
  "value": 0,
  "deviation": 0,
  "volatility": 0,
  "result": 0,
  "latest": true,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14

Properties

NameTypeRequiredRestrictionsDescription
domainnumbertruenonenone
idnumbertruenonenone
typestringtruenonenone
owneridnumbertruenonenone
valuenumbertruenonenone
deviationnumbertruenonenone
volatilitynumbertruenonenone
resultnumbertruenonenone
latestbooleantruenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateRatingDto

{}

1
2

Properties

None

CreateCommentDto

{
  "content": "string",
  "stars": 0,
  "owner": 0,
  "task": 0
}

1
2
3
4
5
6
7

Properties

NameTypeRequiredRestrictionsDescription
contentstringtruenonenone
starsnumbertruenonenone
ownernumbertruenonenone
tasknumbertruenonenone

Comment

{
  "owner": 0,
  "task": 0,
  "id": 0,
  "content": "string",
  "stars": 0,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}

1
2
3
4
5
6
7
8
9
10

Properties

NameTypeRequiredRestrictionsDescription
ownernumbertruenonenone
tasknumbertruenonenone
idnumbertruenonenone
contentstringtruenonenone
starsnumbertruenonenone
createdAtstring(date-time)truenonenone
updatedAtstring(date-time)truenonenone

UpdateCommentDto

{}

1
2

Properties

None

Last Updated: