Giter Site home page Giter Site logo

argentaria's Introduction

Argentaria

A basic and small REST API made with Elixir and Phoenix for accounts

Setup

To start your Phoenix server:

  • Install dependencies with mix deps.get
  • Create and migrate your database with mix ecto.setup
  • Start Phoenix endpoint with mix phx.server or inside IEx with iex -S mix phx.server

Great! Now you can visit localhost:4000 from your browser.

Docs

/balance?account_id=1

This endpoint will give the balance from requested account

/reset

Endpoint to reset the accounts database

/events

Endpoint to deposit, withdraw or transfer amount between accounts

deposit event

Mandatory fields:

{
  "type": "deposit",
  "destination": "<account_id>",
  "amount": 0
}

withdraw event

Mandatory fields:

{
  "type": "withdraw",
  "origin": "<account_id>",
  "amount": 0
}

transfer event

Mandatory fields:

{
  "type": "transfer",
  "origin": "<account_id>",
  "destination": "<account_id>",
  "amount": 0
}

Rules

Deposit

  • When the deposit is made to a non-existing account, the account will be created with a balance equal to the deposited amount.
  • When deposit is made to existing account, amount is added to the account balance

Withdraw

  • When a withdraw is made from a non-existing account, the return is 404 http code with "0" text
  • When withdraw is made from a existing account, amount is subtracted from the account balance

Transfer

  • When a transfer is made from a non-existing account to an existing account, the return is 404 http code with "0" text
  • When transfer is made from a existing account to an existing account, amount is subtracted from the origin account balance and the amount is added to destination account balance

argentaria's People

Contributors

teijiw avatar

Watchers

 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.