Get all Reminders
Reminders
Get all Reminders
| ⚠️ This endpoint is currently in BETA |
|---|
Returns a page of Reminders visible to the caller.
You can filter reminders using the filter query parameter. The filter parameter is a string
that you can specify conditions based on the following properties.
| Property | Description | Type | Operators | Examples |
|---|---|---|---|---|
id | Filter reminders by id | int64 | = | id=1|id=2|id=3 |
type | Filter by reminder type | enum | = | type=one-time, type=recurring |
status | Filter by derived status | enum | = | status=active, status=overdue, status=completed |
resetTrigger | Filter recurring reminders by reset trigger | enum | = | resetTrigger=interaction, resetTrigger=email, resetTrigger=event |
dueDate | Filter by due date | datetime | >, <, >=, <= | dueDate>=2026-01-01T00:00:00Z |
completedAt | Filter by completion timestamp | datetime | >, <, >=, <= | completedAt=2026-01-01T00:00:00Z |
createdAt | Filter by creation time | datetime | >, <, >=, <= | createdAt>=2026-01-01T00:00:00Z |
updatedAt | Filter by last-updated time | datetime | >, <, >=, <= | updatedAt>=2026-01-01T00:00:00Z |
owner.id | Filter by owner | int64 | =, != | owner.id=1|owner.id=2, owner.id!=3 |
creator.id | Filter by creator | int64 | = | creator.id=1 |
completer.id | Filter by completer | int64 | = | completer.id=1 |
company.id | Filter by tagged company | int64 | = | company.id=42 |
person.id | Filter by tagged person | int64 | = | person.id=42 |
opportunity.id | Filter by tagged opportunity | int64 | = | opportunity.id=42 |
Results are ordered by dueDate ascending (soonest-due first).
GET
Get all Reminders
Documentation Index
Fetch the complete documentation index at: https://developer.affinity.co/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Include total count of the collection in the pagination response
Cursor for the next or previous page
Example:
"ICAgICAgYmVmb3JlOjo6Nw"
Number of items to include in the page
Required range:
1 <= x <= 100Example:
100
Filter options
Response
OK
A page of Reminder objects.