CSharp SDK that allows merchants to receive, send, check transaction status, and perform lots of payment transactions.
Before you can have access to APIs you need to register and create an Account on reddeonline. Header for all request should have {"apikey": "string"}: and this API key will be sent to merchant when their app configuration is setup for them by Wigal.
For more information on documentation go to developers.reddeonline.com
To use this library you'll need to have created a Redde account.
Clone or download the repository
git clone https://github.com/wigalsolutionsltd/redde-sdk-CSharp.git
Enter your API key and App ID which was provided to you by the Redde Team:
#Replace App ID with your App ID
int app_id = 349009;
#Enter Api Key
string api_key = "";
#Create an instance of Redde Class
Redde red = new Redde(api_key, app_id);
#Client Reference
string client_ref = red.clientReferenceNumber(6);
#Client ID
string client_id = red.randomClientID(6);
To use the API to recieve money from a customer, the receiveMoney() method will be used which takes takes 5 required arguments which are: amount, network type(MTN, AIRTELTIGO, VODAFONE), phone number, client reference, and client id respectively.
#Enter App ID
int app_id = 349009;
#Enter Api Key
string api_key = "";
#Create an instance of Redde Class
Redde red = new Redde(api_key, app_id);
#Client Reference
string client_ref = red.clientReferenceNumber(6);
#Client ID
string client_id = red.randomClientID(6);
Console.WriteLine(red.receiveMoney(1, "233200000000", client_ref, client_id, "MTN"));
To use the API to send money to a customer, the sendMoney() method will be used which takes takes 5 required arguments which are: amount, network type(MTN, AIRTELTIGO, VODAFONE), phone number, client reference, and client id respectively.
#Enter App ID
int app_id = 349009;
#Enter Api Key
string api_key = "";
#Create an instance of Redde Class
Redde red = new Redde(api_key, app_id);
#Client Reference
string client_ref = red.clientReferenceNumber(6);
#Client ID
string client_id = red.randomClientID(6);
Console.WriteLine(red.sendMoney(1, "233200000000", client_ref, client_id, "MTN"));
You need to setup your callback URL for the apps we create for you on Redde
- Login to your Redde account
- Click on the Apps link on the navigation bar
- You will see your list of apps in a table. Click on the modify button
- Add your callback url(s) for both the Receive Callback URL and Cash Out Callback URL
- Apply changes and you are all set.
Most APIs implement callbacks for easy tracking of api transactions so try and implement it to keep track of the API transactions.
//Callback Url Endpoint
This library is released under the MIT License