Hasta Backend
  1. reminders
  • lookup
    • Get localised seed data
      GET
    • Get core seed data
      GET
    • Get zodiac signs
      GET
    • Get subscription and pricing plans
      GET
    • Get FAQs
      GET
    • Get notification intervals
      GET
  • audit
    • Get audit logs
      GET
  • auth
    • Register device
      POST
    • Send OTP
      POST
    • Verify OTP and login
      POST
    • Resend OTP
      POST
    • Refresh access token
      POST
    • Logout
      POST
    • Google OAuth login
      POST
  • admin
    • Register admin account
      POST
    • Admin login
      POST
    • Admin logout
      POST
    • Refresh admin access token
      POST
    • Get admin profile
      GET
    • Update admin password
      PUT
    • Edit language
      PUT
    • Add language
      POST
    • Delete language
      DELETE
    • Delete user event logs
      DELETE
    • Clear lookup cache
      DELETE
    • Clear cache
      DELETE
  • blogs
    • Admin - get all blogs
    • Admin - delete a blog
    • Get all blogs
    • Get blog categories
    • Update blog status
    • Admin - send blog notification
    • Get blog details
    • Subscribe to blog notifications
    • Unsubscribe from blog notifications
  • feedback
    • Submit a user feedback
    • Get all queries
    • Update user query status
    • Get all reviews
    • Update review status
    • Get all featured reviews
  • events
    • Track a user event
    • Fetch all tracked events
  • notifications
    • Send broadcast notification
    • Send custom notification to a user
    • Fetch user notifications
    • Get unread notification count
    • Mark notification as read
  • reminders
    • Fetch user reminders
      GET
    • Create a reminder
      POST
    • Update a reminder
      PUT
    • Delete a reminder
      DELETE
  • user
    • Create / complete user profile
    • Get my profile
    • Update profile image
    • Update language preference
    • Update push notification preference
    • Get my family members
    • Add a family member
    • Delete a family member
    • Update family member profile image
    • Admin - list users
    • Admin - get user details with family
    • Admin - delete user and all family members
    • Create / complete user profile
    • Admin - update user status
  • palm
    • Get user palm reading
    • Upload user palm image
    • Upload family member palm image
    • Get family member palm reading
  • horoscopes
    • Get user kundali
    • Get family member kundali
    • Get horoscope (daily / weekly / monthly)
  • reports
    • Share a report via email
    • Get shared report PDF link
  • tarot
    • List all tarot cards
    • Get single tarot card by slug
    • Get today's daily tarot card
    • Get a 3-card tarot reading
    • Get tarot reading history
  • marriage
    • Generate marriage compatibility report
    • Get marriage compatibility report
  • child
    • Generate baby names or child timing
    • Like or unlike a suggested baby name
    • Get child naming or timing result
  • dashboard
    • Dashboard overview stats
    • User growth time-series
    • Subscription distribution by plan
    • Top-up & one-time sales distribution
    • Recent activity feed
  • Health
    • Liveness check
  1. reminders

Create a reminder

POST
/api/v1/reminders/
reminders
Last modified:2026-06-04 22:55:16
Create a new reminder for the authenticated user or one of their family members. Supports daily and weekly repeat schedules. The next trigger time is computed automatically from reminder_time and timezone. repeat_days is required when repeat_type is 'weekly' (0=Monday … 6=Sunday).
Request: Bearer token
Body: title, description, reminder_time (HH:MM), timezone, repeat_type (daily|weekly), repeat_days (required for weekly), optional family_key, reminder_type, start_date, end_date
Success: 200 - data is the created reminder (reminder_key, family_member_name, reminder_type, title, description, reminder_time, timezone, repeat_type, repeat_days, start_date, end_date, is_active, next_trigger_on, last_triggered_on).
Errors: 401 - invalid token | 404 - family member not found | 422 - invalid fields (e.g. weekly without repeat_days)

Request

Body Params application/jsonRequired

Example
{
    "description": "Time for your morning puja ritual.",
    "reminder_time": "07:00",
    "reminder_type": "puja",
    "repeat_type": "daily",
    "timezone": "Asia/Kolkata",
    "title": "Daily Puja"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/reminders/' \
--header 'Content-Type: application/json' \
--data '{
    "description": "Time for your morning puja ritual.",
    "reminder_time": "07:00",
    "reminder_type": "puja",
    "repeat_type": "daily",
    "timezone": "Asia/Kolkata",
    "title": "Daily Puja"
}'

Responses

🟢200OK
application/json
Successful Response
Bodyapplication/json

Example
{
    "success": true,
    "message": "Reminder created",
    "data": {
        "reminder_key": "Remind-83421",
        "reminder_type": "puja",
        "title": "Daily Puja",
        "description": "Time for your morning puja ritual.",
        "reminder_time": "07:00",
        "timezone": "Asia/Kolkata",
        "repeat_type": "daily",
        "is_active": true,
        "next_trigger_on": "2026-05-22T01:30:00Z"
    }
}
🟠401Unauthorized
🟠404Record Not Found
🟠422Parameter Error
Modified at 2026-06-04 22:55:16
Previous
Fetch user reminders
Next
Update a reminder
Built with