Giter Club home page Giter Club logo

telecoms-api's Introduction

Telecoms API

This project creates a simple API for an imaginary telecoms provider.

Table of Contents

  1. Building
  2. Running The Application
  3. API Endpoints

Building

Open a command window in the telecoms-api project and run: mvn package -Prunnable-war

This will create a jar which contains a standalone Tomcat 7 server with the Telecoms API WAR deployed to it.

Running The Application

Run the JAR that you either built from the previous step, or downloaded from the releases tab by running:

java -jar telecoms-api-1.0.jar

Open your internet browser and navigate to: http://localhost:8080/api/

API Endpoints

  1. Get All Phone Numbers - GET /api/numbers/
  2. Get A Customer's Phone Numbers - GET /api/numbers/?customer=id
  3. Activate A Phone Number - GET /api/numbers/?activate=phoneNumber

1. Get All Phone Numbers

Get an array of all phone numbers.

URL : /api/numbers/

Method : GET

Auth Required : NO

Permissions Required : None

Response Example

[
  {
    "number": "1",
    "activated": false
  },
  {
    "number": "2",
    "activated": false
  },
  {
    "number": "3",
    "activated": false
  },
  {
    "number": "4",
    "activated": false
  },
  {
    "number": "5",
    "activated": false
  },
  {
    "number": "6",
    "activated": false
  },
  {
    "number": "7",
    "activated": false
  },
  {
    "number": "8",
    "activated": false
  },
  {
    "number": "9",
    "activated": false
  },
  {
    "number": "10",
    "activated": false
  }
]

2. Get A Customer's Phone Numbers

Get an array of all phone numbers associated with a given customer.

URL : /api/numbers/?customer=id

Method : GET

Auth Required : NO

Permissions Required : None

Response Example

http://localhost:8080/api/numbers/?customer=1
[
  {
    "number": "1",
    "activated": false
  },
  {
    "number": "2",
    "activated": false
  },
  {
    "number": "3",
    "activated": false
  }
]

3. Activate A Phone Number

Activate a given phone number.

URL : /api/numbers/?activate=phoneNumber

Method : GET

Auth Required : NO

Permissions Required : None

Response Example

http://localhost:8080/api/numbers/?activate=1
Success Response
{
  "message": "Phone number was activated successfully."
}
Error Response
{
  "message": "Phone number not found!"
}

telecoms-api's People

Contributors

p-karanthaker avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.