{"id":30692058,"url":"https://github.com/martcpp/wiatlist-mailer-api","last_synced_at":"2025-09-02T04:47:34.877Z","repository":{"id":224271795,"uuid":"762869437","full_name":"martcpp/wiatlist-mailer-api","owner":"martcpp","description":"simple waitlist api for company who want to keep there customers on the list","archived":false,"fork":false,"pushed_at":"2024-07-16T18:46:31.000Z","size":36190,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-07-16T22:55:38.552Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/martcpp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-02-24T23:02:18.000Z","updated_at":"2024-07-16T18:46:37.000Z","dependencies_parsed_at":"2024-02-25T00:34:41.261Z","dependency_job_id":null,"html_url":"https://github.com/martcpp/wiatlist-mailer-api","commit_stats":null,"previous_names":["martcpp/wiatlist-mailer-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/martcpp/wiatlist-mailer-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2Fwiatlist-mailer-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2Fwiatlist-mailer-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2Fwiatlist-mailer-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2Fwiatlist-mailer-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/martcpp","download_url":"https://codeload.github.com/martcpp/wiatlist-mailer-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martcpp%2Fwiatlist-mailer-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273233274,"owners_count":25068731,"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-09-02T02:00:09.530Z","response_time":77,"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":[],"created_at":"2025-09-02T04:47:34.298Z","updated_at":"2025-09-02T04:47:34.862Z","avatar_url":"https://github.com/martcpp.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# This is the back end for the marketing site\n \n\n## Brief description of your project.\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Dependencies](#dependencies)\n- [Configuration](#configuration)\n\n\n## Overview\n\nThis is the main back-end for the marketing website of fira it contains the waitlist api\n\n## Installation\n\nProvide step-by-step instructions on how to install the project and its dependencies.\n\n```bash\npip install -r requirements.txt\n\n```\n# Install dependencies\n``` \ncd requirements.txt \n```\n## usage:\nthe following are the accepted api end points:\n\n# Waitlist Entry API\n\n## Overview\n\nThe Waitlist Entry API provides endpoints for managing waitlist entries.\n\n## Base URL\n\n`https://example.com/api/v1/waitlist/`\n\n## Allowed Methods\n\n- `GET`: Retrieve a list of waitlist entries.\n- `POST`: Create a new waitlist entry.\n\n## Waitlist Entry Object\n\n- `id` (Integer, Read-only): Unique identifier for the waitlist entry.\n- `email` (String, Required): Email address of the person.\n- `name` (String, Optional): Name of the person.\n- `phone` (String, Required): Phone number of the person.\n\n## Endpoint: Retrieve Waitlist Entries\n\n### Request\n\n- **Method:** GET\n- **URL:** `/`\n- **Content Type:** application/json\n\n### Response\n\n#### Successful Response\n\n- **Status Code:** 200 OK\n- **Content Type:** application/json\n\n```json\n[\n    {\n        \"id\": 1,\n        \"email\": \"example@example.com\",\n        \"name\": \"John Doe\",\n        \"phone\": \"+1234567890\"\n    },\n    {\n        \"id\": 2,\n        \"email\": \"another@example.com\",\n        \"name\": \"Jane Doe\",\n        \"phone\": \"+9876543210\"\n    }\n]\n\n```\n- **Method:** POST\n- **URL:** `/`\n- **Content Type:** application/json\n\n### Response\n\n#### Successful Response\n\n- **Status Code:** 201 created\n- **Content Type:** application/json\n\n```json\n\n{\n    \"email\": \"new@example.com\",\n    \"name\": \"Miera Doe\",\n    \"phone\": \"+1122334455\"\n}\n```\n\n# Configuration\n```\ngit clone -b \u003cbranch name\u003e git url\ncd website_api\npip install -r requirements.txt\nconnect all databse variable in setting.py\n\nrun\n\npython manage.py makemigrations\npython manage.py migrate\n\nrun server\npython manage.py runserver\n\ntest api using post man and other\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartcpp%2Fwiatlist-mailer-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmartcpp%2Fwiatlist-mailer-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartcpp%2Fwiatlist-mailer-api/lists"}