> ## 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.

# Delete (complete) a reminder

> Deletes the reminder. The caller must be the same user that created the reminder (`createdBy`) and the reminder must belong to the caller's organization.



## OpenAPI

````yaml /api-reference/openapi.yaml delete /api/reminders/{reminderId}
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/{reminderId}:
    delete:
      tags:
        - Reminders
      summary: Delete (complete) a reminder
      description: >-
        Deletes the reminder. The caller must be the same user that created the
        reminder (`createdBy`) and the reminder must belong to the caller's
        organization.
      operationId: delete_reminders_reminderId
      parameters:
        - in: path
          name: reminderId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Reminder deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderDeleteResponse'
        '403':
          description: Caller does not own the reminder
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderErrorResponse'
        '404':
          description: Reminder not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderErrorResponse'
        '500':
          description: Failed to delete reminder
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReminderErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ReminderDeleteResponse:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - true
        message:
          type: string
      required:
        - success
      additionalProperties: true
      example:
        success: true
        message: Reminder deleted successfully
    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
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````