Vesicash API V1
Search…
Vesicash API V1
Overview
API DOCUMENTATION
API Basics
Authentication
Errors
User Management
Transactions Management
Create a product transaction
Create a oneoff transaction
Create a milestone transaction
Transaction Parties
Send transaction
Agree to transaction
Reject a transaction
Funding a transaction
Fetch transaction details
Due Date Extension
Mark transaction as shipped
Accept shipped transaction
Reject shipped transaction
Listing Transactions
Dispute Management
Disbursement
Other Tools
Other Integration Methods
Widget
Plugins
Libraries
Webhooks
Customizations
Basics
Payment System
Custom Notifications
Powered By
GitBook
Listing Transactions
As a business, you can easily list transactions that belongs to you or your customers using the endpoint below:
post
https://api.vesicash.com/v1/
transactions/listByBusiness
list by business
For instance: you can a make a post request to the endpoint above and pass in the json data below to list transactions that belongs to your business.
1
{
2
"business_id": "9752720388"
3
}
Copied!
Similarly, you can also list transactions that belongs to your specific customer using the endpoint below:
post
https://api.vesicash.com/v1/
transactions/listByUser
list by user
For instance: you can a make a post request to the endpoint above and pass in the json data below to list transactions that belongs to a user.
1
{
2
"account_id": "4666124899"
3
}
Copied!
View All Available Transaction Status:
https://docs.vesicash.com/api-documentation/transactions#transaction-status
​
Previous
Reject shipped transaction
Next - API DOCUMENTATION
Dispute Management
Last modified
1yr ago
Copy link
Contents
post
list by business
post
list by user