Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.37 KB

express_request.md

File metadata and controls

38 lines (30 loc) · 1.37 KB

Lipa na M-PESA online API also known as M-PESA express (STK Push/NI push) is a Merchant/Business initiated C2B (Customer to Business) Payment.

Once you, our merchant integrate with the API, you will be able to send a payment prompt on the customer's phone (Popularly known as STK Push Prompt) to your customer's M-PESA registered phone number requesting them to enter their M-PESA pin to authorize and complete payment.

Requires a business_short_code - The organization shortcode used to receive the transaction and returns a MpesaExpressRequestBuilder struct

Safaricom API docs reference

Example

use mpesa::{Mpesa, Environment};

#[tokio::main]
async fn main() {
    dotenv::dotenv().ok();

    let client = Mpesa::new(
        env!("CLIENT_KEY"),
        env!("CLIENT_SECRET"),
        Environment::Sandbox,
    );

    let response = client
        .express_request("174379")
        .phone_number("254708374149")
        .party_a("254708374149")
        .party_b("174379")
        .amount(500)
        .callback_url("https://test.example.com/api")
        .transaction_type(mpesa::CommandId::CustomerPayBillOnline) // Optional, defaults to `CommandId::CustomerPayBillOnline`
        .transaction_desc("Description") // Optional, defaults to "None"
        .send()
        .await;

    assert!(response.is_ok())
}