Skip to content

POST Reminders Send

Julien Lesaffre edited this page Mar 28, 2019 · 1 revision

Send reminders to students that did not submit their form in time and return the list of reminders sent

Method

POST

URL

/reminders/send

Output

An array of reminders, each containing the following fields:

  • reminderId - 911
  • subject - "Tasks Workload Report Submission"
  • date - Date submitted
  • deadline - Deadline to submit the form
  • description - "You only have 3 days left to submit your Task Workload Report!"
  • urgency - 3
  • coop - Coop Object for which a form is required

Example

Request: POST http://localhost:8080/reminders/send

Success Response:

  • Code: 200
  • Content:
{
"phone": 438,
"subject":"Tasks Workload Report Submission",
"date": "23-03-2019",
"deadline": "26-03-2019",
"description": "You only have 3 days left to submit your Task Workload Report!",
"urgency": 3,
"coop": {},
}

Back to REST API

Clone this wiki locally