25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
BinHong Lee 11d2a817df Added README.md 7 yıl önce
.gitignore Basic functionality now works 7 yıl önce
README.md Added README.md 7 yıl önce
index.js Payment chain now works as intended 7 yıl önce
package.json Basic functionality now works 7 yıl önce

README.md

Breakups

Creating a payment chain for bill splitting needs

api domain: https:\\breakups.herokuapp.com\

API Call Documentations

Type Call Request Response
GET help - URL to github repository
POST total standard format { "total": 200 }
POST perPerson standard format { "perPerson": 30 }
POST oweChart standard format standard format
POST sortedOweChart standard format standard format
POST paymentChain standard format chain format

Expected Request / Response

standard format

{
  "users": [
    {
      "name": "Person1",
      "amount": 100
    },
    {
      "name": "Person2",
      "amount": 50
    },
    {
      "name": "Person3",
      "amount": 30
    }
  ]
}

chain format

[
  {
    "from": "Person2",
    "to": "Person3",
    "amount": 10
  },
  {
    "from": "Person3",
    "to": "Person1",
    "amount": 40
  }
]