Creating a payment chain for bill splitting needs. Try it out now!
api domain: https://breakups.herokuapp.com/
| Type | Call | Request | Response |
|---|---|---|---|
GET |
/ |
- | redirects to documentation page |
GET |
/help |
- | redirects to github repository |
GET |
/webapp |
- | redirects to the webapp |
POST |
/emailPaymentChain |
["Email sent to [email protected]", "Email sent to [email protected]"] |
|
POST |
/total |
standard / email | { "total": 200 } |
POST |
/oweChart |
standard / email | standard / email |
POST |
/paymentChain |
standard / email | chain |
POST |
/perPerson |
standard / email | { "perPerson": 30 } |
POST |
/sortedOweChart |
standard / email | standard / email |
{
"users": [
{
"name": "Person1",
"amount": 100
},
{
"name": "Person2",
"amount": 50
},
{
"name": "Person3",
"amount": 30
}
]
}[
{
"from": "Person2",
"to": "Person3",
"amount": 10
},
{
"from": "Person3",
"to": "Person1",
"amount": 40
}
]{
"users": [
{
"name": "Person1",
"email": "[email protected]",
"amount": 100
},
{
"name": "Person2",
"email": "[email protected]",
"amount": 50
},
{
"name": "Person3",
"email": "[email protected]",
"amount": 30
}
],
"mixmax-api": "your-mixmax-api-key"
}