Lipisha REST APIs


Request Settlement


API Description

This API call requests a settlement of the account balance to a transaction or withdrawal account.

API Endpoint

The API service endpoint for making the Request Settlement API call is:

https://developer.lipisha.com/index.php/v2/api/request_settlement

API Request

The API request is made via HTTP POST and must be url encoded. Some of the parameters are required while others are optional. The parameters are:

Parameter Description Example
api_key Unique string specifying merchant's Lipisha API key.

This should match the api key that you have generated for your Lipisha account
3aa67677e8bf1d4c8fe886a38c03a860
api_signature Unique string specifying merchant's Lipisha API signature.

This should match the api signature that you have generated for your Lipisha account
SYetmwsNnb5bwaZRyeQ..........KhZNNkCoEx+5x=
api_version String specifying the version of the API in use 1.3.0
api_type String specifying the type of handshake or IPN call Callback
account_number The transaction account number where the funds will settle to 00500
amount Amount to send to the recipient. 350000

API Response

The API reponse will be returned as JSON. Each response will contain a status and content section. The parameters are:

Parameter Description Example
Status
status String specifying whether API Call executed successfully or failed SUCCESS
status_code Integers specifying status code of the API Call result 0000
status_description String containing description of the status Settlement requested
Content
Array Of Transactions
transaction Unique code that identify transaction NMQR38SJDI
transaction_type String specifying type of transaction.
Possible transaction types include:
  • Withdrawal
  • Fees
Payment
transaction_method String specifying the method used to carry out the transaction.
Possible transaction methods include:
  • Bank (EFT)
  • Bank (RTGS)
  • Bank (Cheque)
  • Mobile (M-PESA)
  • Airtime (Safaricom)
  • Airtime (Airtel)
  • Messaging (SMS)
  • Bulk Pay (M-Pesa)
  • Transfer (Lipisha)
Paybill (M-Pesa)
transaction_date String specifying date and time when transaction was carried out.
In the format: YYYY-MM-DD HH:mm:ss
2013-07-18 12:23:57
transaction_account_name String specifying the name of the transaction account in which the transaction was carried out. ACME Limited (Barclays Lavington, 110000111000)
transaction_account_number Integers specifying number of the transaction account in which the transaction were carried out. 00500
transaction_reference String specifying the reference the customer used when entering transactions. E.g. invoice number or receipt number 110000111000
transaction_amount Number specifying the value of the transactions. Note that withdrawals and other charges e.g. fees are indicated as a negative amount 350000.0000
transaction_status Strings specifying the status of a transaction.
Possible transaction status include:
  • Requested
Completed
transaction_name String specifying name of the person or entity that made a transaction. JOHN JANE DOE
transaction_mobile_number Integers specifying mobile number of the person or entity that made a transaction. 254722002222
transaction_email String specifying email address of the person or entity that made a transaction. test@test.com

JSON Reponse
{
  "status": {
    "status_code": "0000",
    "status_description": "Settlement requested",
    "status": "SUCCESS"
  },
  "content": [
	{
	    "transaction": "NMQR38SJDI",
            "transaction_type": "Withdrawal",
            "transaction_method": "Bank (EFT)",
            "transaction_date": "2013-07-18 12:23:57",
            "transaction_account_name": "ACME Limited (Barclays Lavington, 110000111000)",
            "transaction_account_number": "00500",
            "transaction_reference": "110000111000",
            "transaction_amount": "350.0000",
            "transaction_status": "Requested",
            "transaction_name": "JOHN JANE DOE",
            "transaction_mobile_number": "254722002222",
            "transaction_email": "test@test.com"
    	},
	{
            "transaction": "DS54EX316",
            "transaction_type": "Fees",
            "transaction_method": "Bank EFT",
            "transaction_date": "2013-07-18 15:13:21",
            "transaction_account_name": "ACME Limited (Barclays Lavington, 110000111000)",
            "transaction_account_number": "00500",
            "transaction_reference": "110000111000",
            "transaction_amount": "350.0000",
            "transaction_status": "Requested",
            "transaction_name": "JOHN JANE DOE",
            "transaction_mobile_number": "254722002222",
            "transaction_email": "test@test.com"
    	}
    ]
}
}

Fork me on GitHub