Skip to main content
POST
/
v1
/
reminders
Create a reminder
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>"
    }
  }
}

Use cases

  • Set a follow-up reminder after a meeting or call
  • Create a keep-in-touch cadence for an important contact
  • Schedule a reminder to reach out before a birthday or event
To create a recurring reminder, include the recurrence fields in the request. One-time reminders only need a due date.

Authorizations

Authorization
string
header
required

Use your Dex API key (e.g. dex_abc123...) as the Bearer token.

Body

application/json
reminder
object
required

Response

Successful response

error
boolean
required
data
object
required