General
Create a reminder
POST /reminder
POST /reminder
Request body
ticketIdintegerbodyThe id of the ticket against which to compare the intent examples
typeenumbodyOptions: reOpenTicket, freeText
datestringbodyNo description.
Request Example
{
"ticketId": 1,
"type": "reOpenTicket",
"date": "2024-08-29 14:38:12"
}Responses
201 — Reminder created
Response Example
{
"id": 123,
"ticketId": 321,
"type": "reOpenTicket",
"date": "2024-08-29 14:38:12",
"status": "open"
}403 — Unauthorized
500 — Internal error