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. Customer Operations

Register Customer

Register Customer

POST {{BASE_URL}}/api/v1/customer/mfi/register

This endpoint allows you to register a customer

Headers

Name
Type
Description

Authentication*

String

Authentication token to track down who is emptying our stocks.

Request Body

Name
Type
Description

full_name*

String

Full name

national_id*

String

National ID Number

phone*

String

Phone number

location*

String

County of residence i.e Nairobi,Narok,Kirinyaga

gender*

String

Gender of the user being registered i.e Male or Female

{
   "status":200,
   "message":"Customer successfully registered",
   "data":{
      "id":132890,
      "full_name":"Anthony Kamau",
      "national_id":"21314151",
      "gender":"Female",
      "phone":"254707888888",
      "date_of_birth":"",
      "date_registered": "13/03/2023 11:18",
      "name":"Anthony Kamau",
      "location":132890,
      "uuid":"c211984f-b5a5-45fb-ae38-9f22fe0465d9",
      "email":""
   }
}
{ 
 "full_name": "Anthony Kamau", 
 "national_id": "21314151", 
 "phone": "0707888888",
 "gender": "Female" 
 "location": "Kwale" 
}
PreviousCustomer OperationsNextFetch Customer

Last updated 3 months ago

Was this helpful?