{"id":30665512,"url":"https://github.com/abynxv/remind-me-later-api","last_synced_at":"2026-05-20T07:02:27.103Z","repository":{"id":311211785,"uuid":"962596999","full_name":"abynxv/Remind-Me-Later-API","owner":"abynxv","description":"A simple Django REST Framework (DRF) API to create reminders. Each reminder belongs to a user and stores a message, date, time, and reminder type (email or SMS).","archived":false,"fork":false,"pushed_at":"2025-08-22T19:10:39.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-22T21:42:57.227Z","etag":null,"topics":["django","django-rest-framework","python3","service-layer","viewsets"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abynxv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-08T11:48:30.000Z","updated_at":"2025-08-22T19:15:07.000Z","dependencies_parsed_at":"2025-08-22T21:42:58.489Z","dependency_job_id":"74b6d3f7-f27c-406c-ba57-0b1df16d00cb","html_url":"https://github.com/abynxv/Remind-Me-Later-API","commit_stats":null,"previous_names":["abynxv/remind-me-later-api"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/abynxv/Remind-Me-Later-API","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abynxv%2FRemind-Me-Later-API","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abynxv%2FRemind-Me-Later-API/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abynxv%2FRemind-Me-Later-API/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abynxv%2FRemind-Me-Later-API/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abynxv","download_url":"https://codeload.github.com/abynxv/Remind-Me-Later-API/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abynxv%2FRemind-Me-Later-API/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273040254,"owners_count":25035182,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-rest-framework","python3","service-layer","viewsets"],"created_at":"2025-08-31T20:51:52.962Z","updated_at":"2026-05-20T07:02:27.049Z","avatar_url":"https://github.com/abynxv.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Remind Me Later API\n\nA simple Django REST Framework (DRF) API to create reminders. Each reminder belongs to a user and stores a message, date, time, and reminder type (email or SMS).\n\n## Setup\n\n1. **Clone the repository:**\n   ```bash\n   git clone https://github.com/your-username/remind-me-later-api.git\n   cd remind-me-later-api\n   ```\n\n2. **Create a virtual environment:**\n   ```bash\n   python -m venv venv\n   source venv/bin/activate   # Linux / macOS\n   venv\\Scripts\\activate      # Windows\n   ```\n\n3. **Install dependencies:**\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Apply migrations:**\n   ```bash\n   python manage.py migrate\n   ```\n\n5. **Create a superuser (for managing users in admin):**\n   ```bash\n   python manage.py createsuperuser\n   ```\n6. **Create a test user (optional):**\n   ```bash\n   python manage.py shell\n   from django.contrib.auth.models import User\n   user = User.objects.create(username=\"abhi\", password=\"123\")\n   print(user.id)\n   ```\n7. **Run the server:**\n   ```bash\n   python manage.py runserver\n   ```\n\n## API Endpoints\n\n### Create Reminder\n**POST** `/api/reminder/`\n\n**Request body:**\n```json\n{\n  \"user\": 1,\n  \"message\": \"Doctor Appointment\",\n  \"date\": \"2025-08-23\",\n  \"time\": \"17:45:00\",\n  \"reminder_type\": \"email\"\n}\n```\n\n**Response (201 Created):**\n```json\n{\n  \"id\": 1,\n  \"user\": 1,\n  \"message\": \"Doctor Appointment\",\n  \"date\": \"2025-08-23\",\n  \"time\": \"17:45:00\",\n  \"reminder_type\": \"email\"\n}\n```\n\n### Get All Reminders\n**GET** `/api/reminder/`\n\n**Response (200 OK):**\n```json\n[\n  {\n    \"id\": 1,\n    \"user\": 1,\n    \"message\": \"Doctor Appointment\",\n    \"date\": \"2025-08-23\",\n    \"time\": \"17:45:00\",\n    \"reminder_type\": \"email\"\n  },\n  {\n    \"id\": 2,\n    \"user\": 1,\n    \"message\": \"Meeting with team\",\n    \"date\": \"2025-08-24\",\n    \"time\": \"09:30:00\",\n    \"reminder_type\": \"sms\"\n  }\n]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabynxv%2Fremind-me-later-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabynxv%2Fremind-me-later-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabynxv%2Fremind-me-later-api/lists"}