NLP for mobile money transactions in Tanzania
API for using transaction NLP
#1: [Data Mining]Analyse Message for transaction data
'''
You need
'''
method: [GET, POST],
baseURL:
nlp.hudumabomba.com /,
data:{
message: ,
phone: ,
},
#2: Check Account Details Including Your Token to login
baseURL=
lipabomba.com /
#2: Check User Balance against your balance
baseURL=
lipabomba.com /?action=balance&accountID=
eg
lipabomba.com /?action=balance&accountID=25575816121212
#3: Update Transactions
token is obtained from the account details on step #1 or from your dashboard
baseURL:
lipabomba.com /
method:[GET, POST]
#3.1: CREATE Transaction
`
method:"POST",
headers: "Authorization: Token "
data:{
detail: 'The memo to be added here',
confirmationCode: '93685440123',
transactionTime: 2020-09-18T08:26:00.000Z,
amount: 1500,
transactionFee: 50,
latestBalance: 120178,
isAmountIn: false,
currency: 'TZS',
accountFirst: {
name: ' ',
accountID: ' ',
},
accountSecond: {
accountID: ' ',
name: ' ',
},
user: 16,
},
reponse: CREATED TRANSACTION with more details or errors if not created
`