---
title: "Get reminders"
method: GET
path: "/contracts/{contract_id}/reminders"
tags: ["Contract - Reminders"]
---

# Get reminders

`GET /contracts/{contract_id}/reminders`

Use this endpoint to get reminders on the contract.

## Path parameters

- `contract_id` integer, required

## Query parameters

- `offset` integer
- `limit` integer

## Headers

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

## Response `200`

Returns the list of reminders.

- object — A list of reminders for given contract.
  - `_links` object — Links to related endpoints.
    - `comments` object
      - `href` string, nullable
    - `contracts` object
      - `href` string, nullable
    - `contract` object
      - `href` string, nullable
    - `create` object
      - `href` string, nullable
    - `data_field` object
      - `href` string, nullable
    - `data_fields` object
      - `href` string, nullable
    - `events` object
      - `href` string, nullable
    - `event` object
      - `href` string, nullable
    - `files` object
      - `href` string, nullable
    - `file` object
      - `href` string, nullable
    - `next` object
      - `href` string, nullable
    - `parties` object
      - `href` string, nullable
    - `party` object
      - `href` string, nullable
    - `previous` object
      - `href` string, nullable
    - `publish` object
      - `href` string, nullable
    - `self` object
      - `href` string, nullable
    - `template_types` object
      - `href` string, nullable
    - `template_type` object
      - `href` string, nullable
    - `template` object
      - `href` string, nullable
    - `templates` object
      - `href` string, nullable
    - `workspaces` object
      - `href` string, nullable
    - `workspace` object
      - `href` string, nullable
    - `playbooks` object
      - `href` string, nullable
  - `count` integer, required
  - `data` object[], required
    - `contract_id` integer, required — The id of the contract.
    - `date_time` string, datetime, required — The date and time the reminder should send.
    - `id` integer, required — The id of the reminder.
    - `message` string, required — The message of the reminder.
    - `subject` string, required — The subject of the reminder.
    - `users` object, required — An object containing users of a reminder.
      - `created_by` object, required
        - `email` string, email, required
        - `id` integer, required
        - `name` string, required
      - `recipients` object[], required — The list of recipients for a particular reminder.
        - `email` string, email, required
        - `id` integer, required
        - `name` string, required

## Other responses

- `401` — The API token or the user email is invalid.
- `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)
