Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Commit

Permalink
updating README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
salemzii authored Feb 28, 2022
1 parent bac42ed commit 3bb75c1
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,39 @@ pass in only the transactionId and we'd use the default refund data i.e data = {
"""
client.refund_transaction(transactionId)


"""
This returns all linked accounts associated with a user, It returns the user's account details along with he business the account resides on.
pass in the linkId to identify and get user's links
"""
client.get_user_links(linkId)


"""
Similarly the method returns a linked account details by passing its ID.
"""
client.get_user_link(linkId)


"""
This method enables you to charge your user's linked account
where data = {
"amount": ,
"remark": ""
}
"""
client.charge(linkId, data)


"""
This method allows you simulate receiving money
data = {
"amount": ,
"currency": "",
"user_reference": ""
}
"""

```

0 comments on commit 3bb75c1

Please sign in to comment.