---
title: "Create a new Reminder"
method: POST
path: "/reminders.json"
tags: ["Reminders"]
---

# Create a new Reminder

`POST /reminders.json`

Outlines the parameters and data fields used when creating a new Reminder

## Query parameters

- `fields` string

## Headers

- `X-API-VERSION` string

## Request body

- object
  - `data` object, required
    - `duration_unit` 'weeks' | 'days' | 'hours' | 'minutes' — Unit to measure the duration value in.
    - `duration_value` integer — Time measured in `duration_unit` to remind user before the subject.
    - `notification_method` object, required
      - `id` integer, required — The unique identifier for a single NotificationMethod associated with the Reminder. The keyword `null` is not valid for this field.
    - `subject` object, required
      - `id` integer, required — The unique identifier for a single CalendarEntry and Task associated with the Reminder. The keyword `null` is not valid for this field.
      - `type` 'CalendarEntry' | 'Task', required — Model type of the Subject.

## Response `201`

Created

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Unprocessable Entity
- `429` — Too Many Requests

---

[API](https://skmtc.net/clio/apis/clio-api-documentation.md) · [All operations](https://skmtc.net/clio/apis/clio-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clio/clio-api-documentation/revisions/73791ddd1207/schema)
