Collins33 / Population-management-API

RESTful API to store population information of different regions

Home Page:https://population-control-33.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Poulation-Management-API

Build Status

Population management API The API provides a user a way to view a list of locations and the breakdown of the population based on gender.

Getting Started

Setting up mongo Atlas

  • create an account on mongo DB atlas
  • create a mongo atlas database
  • ensure the IP security settings allow connctions from everywhere
  • copy the connection url given to you.
  • create nodemon.json file
  • add the database connection given to you
  "MONGO_DATABASE_URL": "database url given"

Starting the application

  • run npm start

Running the tests

  • create test database on mongo atlas
  • ensure the IP security settings allow connctions from everywhere
  • save the database url given
"MONGO_DATABASE_TEST_URL":"test database url given"
  • run npm test

endpoints

Endpoint FUNCTIONALITY
POST /api/v1/locations This will create the location
GET /api/V1/locations This will get all the locations
GET /api/V1/locations/:locationId This will get an individual location
PUT /api/V1/locations/:locationId This will edit a specific location
DELETE /api/V1/locations/:locationId This will delete a location

MAKING A POST REQUEST ON POSTMAN

Payload
{
  "name": "Nairobi",
  "femalePopulation": 400000,
  "malePopulation": 40000,
}
Response
{
    "message": "Location was created",
    "createdLocation": {
        "name": "Nairobi",
        "femalePopulation": 400000,
        "malePopulation": 40000,
        "totalPopulation": 440000,
        "_id": "5d5e53bf0060d20004bb3806",
        "request": {
            "type": "GET",
            "description": "Get the created location",
            "url": "https://population-control-33.herokuapp.com/api/v1/locations/5d5e53bf0060d20004bb3806"
        }
    }
}

Built With

Authors

  • COLLINS NJAU MURU

License

This project is licensed under the MIT License

About

RESTful API to store population information of different regions

https://population-control-33.herokuapp.com/


Languages

Language:JavaScript 100.0%