cURL
curl --request POST \ --url https://api.prod.getdex.com/v1/reminders/ \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "reminder": { "due_at_date": "2023-11-07T05:31:56Z", "text": "<string>", "due_at_time": "2023-11-07T05:31:56Z", "is_complete": true, "recurrence": "<string>", "reminders_contacts": [ { "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "contacts": "<unknown>" } ] } } '
{ "error": true, "data": { "reminder": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "text": "<string>", "due_at_date": "<string>", "due_at_time": "<string>", "is_complete": true, "recurrence": "<string>", "last_completed_at": "<string>", "next_occurrence_at": "<string>", "created_at": "<string>", "updated_at": "<string>" } } }
Create a new reminder for the authenticated user. A reminder can be linked to a contact and optionally set to recur on a schedule.
Use your Dex API key (e.g. dex_abc123...) as the Bearer token.
Show child attributes
Successful response
Was this page helpful?