---
title: "Create a reminder"
method: POST
path: "/contracts/{contract_id}/reminders"
tags: ["Contract - Reminders"]
---

# Create a reminder

`POST /contracts/{contract_id}/reminders`

Use this endpoint to create a internal reminder to the owner side participants on the contract.

## Path parameters

- `contract_id` integer, required

## Headers

- `x-oneflow-api-token` string, required
- `x-oneflow-user-email` string, email, required

## Request body

- object
  - `date_time` string, datetime, required — The date and time the reminder should send. It should be a future date and time.
  - `message` string, required — The message of the reminder.
  - `subject` string, required — The subject of the reminder.
  - `reminder_recipients` object[], required — Users of the account who are owner side participants of the contract to be reminded.
    - `id` integer, required — The user ID of a owner side participant.

## Response `200`

Reminder is created successfully.

## Other responses

- `400` — Invalid format or content of the request.
- `401` — The API token or the user email is invalid.
- `403` — The request is not authorized by the server.
- `404` — A required entity is missing.

---

[API](https://skmtc.net/oneflow/apis/public-api-for-oneflow.md) · [All operations](https://skmtc.net/oneflow/apis/public-api-for-oneflow/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oneflow/public-api-for-oneflow/versions/0e73a45dec15/schema)
