> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt
> Use this file to discover all available pages before exploring further.

# List reminders created by the current user

> Returns unfired reminders scoped to the caller's organization and `createdBy = userId`, sorted by `reminderDate` ascending. Optionally filtered by `contactId` (single) or `contactIds` (comma-separated).



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/reminders
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/reminders:
    get:
      tags:
        - Reminders
      summary: List reminders created by the current user
      description: >-
        Returns unfired reminders scoped to the caller's organization and
        `createdBy = userId`, sorted by `reminderDate` ascending. Optionally
        filtered by `contactId` (single) or `contactIds` (comma-separated).
      operationId: get_reminders
      parameters:
        - in: query
          name: contactId
          required: false
          schema:
            type: string
        - in: query
          name: contactIds
          required: false
          schema:
            type: string
          description: Comma-separated list of contact ids
      responses:
        '200':
          description: Reminders returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderListResponse'
        '500':
          description: Failed to fetch reminders
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ReminderListResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: array
          items:
            $ref: '#/components/schemas/ReminderDto'
      required:
        - success
        - data
      additionalProperties: true
      example:
        success: true
        data:
          - _id: 65f0a0b0c0d0e0f0a0b0c0d0
            contactId: 65c2d0e0f0a0b0c0d0e0f0a0
            organizationId: 65a0e0e0e0e0e0e0e0e0e0e0
            createdBy: 65b1f0a2c3d4e5f6a7b8c9d0
            note: Follow up on demo booking
            reminderDate: '2026-05-22T15:00:00.000Z'
            channelType: sms
            fired: false
            createdAt: '2026-05-18T12:00:00.000Z'
            updatedAt: '2026-05-18T12:00:00.000Z'
    ReminderErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
        error:
          type: string
      required:
        - success
      additionalProperties: true
      example:
        success: false
        message: Contact not found
        error: NOT_FOUND
    ReminderDto:
      type: object
      properties:
        _id:
          type: string
        contactId:
          type: string
        organizationId:
          type: string
        createdBy:
          type: string
        note:
          type: string
        reminderDate:
          type: string
          format: date-time
        localTimestamp:
          type: string
        channelType:
          type: string
        phoneNumber:
          type: string
        messengerId:
          type: string
        webchatId:
          type: string
        contactName:
          type: string
        fired:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      additionalProperties: true
      example:
        _id: 65f0a0b0c0d0e0f0a0b0c0d0
        contactId: 65c2d0e0f0a0b0c0d0e0f0a0
        organizationId: 65a0e0e0e0e0e0e0e0e0e0e0
        createdBy: 65b1f0a2c3d4e5f6a7b8c9d0
        note: Follow up on demo booking
        reminderDate: '2026-05-22T15:00:00.000Z'
        channelType: sms
        phoneNumber: '+14155550123'
        contactName: Jane Doe
        fired: false
        createdAt: '2026-05-18T12:00:00.000Z'
        updatedAt: '2026-05-18T12:00:00.000Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````