Skip to content

simple waitlist api for company who want to keep there customers on the list

License

Notifications You must be signed in to change notification settings

martcpp/wiatlist-mailer-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is the back end for the marketing site

Brief description of your project.

Table of Contents

Overview

This is the main back-end for the marketing website of fira it contains the waitlist api

Installation

Provide step-by-step instructions on how to install the project and its dependencies.

pip install -r requirements.txt

Install dependencies

cd requirements.txt 

usage:

the following are the accepted api end points:

Waitlist Entry API

Overview

The Waitlist Entry API provides endpoints for managing waitlist entries.

Base URL

https://example.com/api/v1/waitlist/

Allowed Methods

  • GET: Retrieve a list of waitlist entries.
  • POST: Create a new waitlist entry.

Waitlist Entry Object

  • id (Integer, Read-only): Unique identifier for the waitlist entry.
  • email (String, Required): Email address of the person.
  • name (String, Optional): Name of the person.
  • phone (String, Required): Phone number of the person.

Endpoint: Retrieve Waitlist Entries

Request

  • Method: GET
  • URL: /
  • Content Type: application/json

Response

Successful Response

  • Status Code: 200 OK
  • Content Type: application/json
[
    {
        "id": 1,
        "email": "[email protected]",
        "name": "John Doe",
        "phone": "+1234567890"
    },
    {
        "id": 2,
        "email": "[email protected]",
        "name": "Jane Doe",
        "phone": "+9876543210"
    }
]
  • Method: POST
  • URL: /
  • Content Type: application/json

Response

Successful Response

  • Status Code: 201 created
  • Content Type: application/json
{
    "email": "[email protected]",
    "name": "Miera Doe",
    "phone": "+1122334455"
}

Configuration

git clone -b <branch name> git url
cd website_api
pip install -r requirements.txt
connect all databse variable in setting.py

run

python manage.py makemigrations
python manage.py migrate

run server
python manage.py runserver

test api using post man and other

About

simple waitlist api for company who want to keep there customers on the list

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published