Patascore APIs
  • Patascore
  • Authentication
  • Customer Operations
    • Register Customer
    • Fetch Customer
  • Verification & Credit Data Operations
    • Fetch Verification
    • Mobiloanscore (Sync)
    • Mobiloanscore (Async)
  • Business Verification
    • Business Verification
    • Fetch Results (Optional)
  • MPESA Operations
    • Upload Statement (Extraction)
    • Extraction Status
    • Scoring Results
  • Bank Operations
    • Upload Statement (Extraction)
    • Scoring Results
  • Transactions Operations
    • Submit Transactions
    • Fetch Score Results
  • Financial Education
    • Fetch Modules
    • Fetch Websocket Conversaction
    • Fetch Customer Session Summary
    • Fetch Customer Summary
    • Fetch Program Summary
    • Customer Subscription
      • Subscribe to Websocket
  • Billing Operations
    • Account Balance
    • Topups
    • Account Usage
Powered by GitBook
On this page

Was this helpful?

  1. Financial Education

Fetch Customer Summary

Get Cakes

GET {{BASE_URL}} /api/v1/fe/customer/summary?customerUuid=[customer_uuid]

This endpoint allows you to get free cakes.

Path Parameters

Name
Type
Description

customer_uuid

string

ID of the cake to get, for free of course.

Headers

Name
Type
Description

Authentication

string

Authentication token to track down who is emptying our stocks.

{
    "status": 200,
    "message": "Summary successfully fetched",
    "data": [
        {
            "session_uuid": "4b697a1f-29f1-4d5a-af9d-5ead6ed74d77",
            "status": "Pending",
            "program_name": "Test Prog",
            "last_active_date": "",
            "module_name": "Credit Scores & CRBs Tips",
            "module_uuid": "31b2166c-dccf-4c92-a124-209c1d86c07c",
             "post_quiz_score": "0/2"
        },
        {
            "session_uuid": "84b6df1d-fdc7-476d-957d-37270c5842f4",
            "status": "Pending",
            "program_name": "Test Prog",
            "last_active_date": "",
            "module_name": "Debt Management Tips",
            "module_uuid": "f65e16f2-f1e7-4482-8dd4-a103d793a3ac",
            "post_quiz_score": "0/2"
        }
    ]
}

If a customer does not exist, response is as below:
{
    "status": 404,
    "message": "Customer not found"
}
If a customer exists but has no session, response is:
{
    "status": 404,
    "message": "Customer not enrolled to any module"
}

PreviousFetch Customer Session SummaryNextFetch Program Summary

Last updated 4 years ago

Was this helpful?