curl --request PUT \
--url https://api.prod.getdex.com/v1/reminders/{reminderId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reminder": {
"text": "<string>",
"due_at_date": "2023-11-07T05:31:56Z",
"due_at_time": "2023-11-07T05:31:56Z",
"is_complete": true,
"recurrence": "<string>",
"reminders_contacts": [
{
"contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"contacts": "<unknown>"
}
],
"last_completed_at": "2023-11-07T05:31:56Z",
"next_occurrence_at": "2023-11-07T05:31:56Z",
"email_sent": true,
"push_notification_sent": true
}
}
'