IMT Pesalink - To Mobile
Test URL
POSThttps://uat.finserve.africa/v3-apis/transaction-api/v3.0/remittance/pesalinkMobile/imt
Live URL
POSThttps://api.finserve.africa/v3-apis/transaction-api/v3.0/remittance/pesalinkMobile/imt
This web service enables an application to send money to mobile.
⚠️
This service is only available in Kenya
📘 Pesalink Participating Banks
To check whether your recipient's bank is participating on PesaLink, go to partners link (opens in a new tab)
200 Success Response Schema
Field Name | Field Type | Field Description |
---|---|---|
status | string | Response status |
code | number | Response code |
message | string | Response message |
data.transactionId | string | unique transaction id |
data.status | string | Transaction status |
Example Request
⚠️
In the example below, please remember to replace the variables enclosed within curly brackets {{ }} with the actual values.
Signature Formula
transfer.amount+transfer.currencyCode+transfer.reference+destination.name+source.accountNumber
Example Request
curl --request POST \
--url https://uat.finserve.africa/v3-apis/transaction-api/v3.0/remittance/pesalinkMobile/imt \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--header 'signature: {{signature}}' \
--data '
{
"source": {
"countryCode": "KE",
"name": "John Doe",
"accountNumber": "0011547896523"
},
"sender": {
"name": "Sender Name",
"documentType": "NationalId",
"documentNumber": "12345",
"countryCode": "KE",
"mobileNumber": "0763000000",
"email": "sender.name@example.com"
},
"destination": {
"type": "mobile",
"countryCode": "KE",
"name": "A N.Other",
"bankCode": "03",
"accountNumber": "101080530003",
"mobileNumber": "0763123456",
"documentType": "NationalId",
"documentNumber": "123456"
},
"transfer": {
"type": "Pesalink",
"amount": "1000",
"currencyCode": "KES",
"date": "2022-12-15",
"description": "some remarks here"
}
}
'
Example Response
Example Response
{
"status": true,
"code": 0,
"message": "success",
"data": {
"transactionId": "",
"status": "SUCCESS"
}
}