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 Modules

Get Cakes

GET {{BASE_URL}}/api/v1/fe/program/modules?program_identifier=[program_id]

This endpoint allows you to get free cakes.

Path Parameters

Name
Type
Description

program_identifier

string

Program Identifier UUID

Headers

Name
Type
Description

Authentication

string

Authentication token to track down who is emptying our stocks.

{
    "status": 200,
    "message": "Modules successfully fetched",
    "data": [
        {
            "identifier": "31b2166c-dccf-4c92-a124-209c1d86c07c",
            "description": "Credit Scores & CRBs Tips",
            "more_details": "More Details about Module"
        },
        {
            "identifier": "3a45b50b-ca48-4616-9c5a-6f2568079304",
            "description": "General Financial Tips",
            "more_details": "More Details about Module"
        }
    ]
}
{
    "status": 404,
    "message": "Modules Not Found"
}

PreviousFinancial EducationNextFetch Websocket Conversaction

Last updated 4 years ago

Was this helpful?