EZloan APIs
  • Overview
  • authentication
    • API Key
  • SERVICE APIS
    • v1
      • Credit Decisioning Flow
        • User Setup
          • Sign up
          • Update
          • User access
        • Get Borrower Info
        • Upload Borrower Data
        • Check Data Collected
        • Link Extracted Data
        • Remove Linked Data
        • View Summary Variables
        • Get SMS Variables
        • Get Credit Score
        • Get Top Locations
      • Scoring Formula
      • Scoring Weights
      • Business Rules
      • Payments
        • Get Due Payments
      • Credit Products
      • Credit Applications
      • Financial Providers
      • Issue CSV [WIP]
      • Report Borrower
      • Template Extender
  • Error codes
    • HTTP Codes
Powered by GitBook
On this page

Was this helpful?

  1. SERVICE APIS
  2. v1
  3. Credit Decisioning Flow

Check Data Collected

View Borrower Uploaded Data Details

GET https://ezloan.genify.ai/borrowers/upload_collected_data/

Path Parameters

Name
Type
Description

uuid*

string

requested borrower UUID

Headers

Name
Type
Description

user_name*

string

partner's username.

authorization*

string

partner's api key.

{
    "collected Data": {
        "application_data": {
            "Columns": [
                "applications"
            ],
            "Count of collected data": 2
        },
        "location_data": {
            "Columns": [
                "alt",
                "lat",
                "long",
                "speed",
                "timestamp"
            ],
            "Count of collected data": 1,
            "Unique Locations": 1
        },
        "sms_data": {
            "Columns": [
                "address",
                "body",
                "day",
                "month",
                "year"
            ],
            "Count of collected data": 9
        }
    },
    "message": "Borrower ID 78862 exists.",
    "status": true
}
{
   "message": "Borrower with UUID '9fec01ea-d163-11ec-9f8f-0242ac140005' does not exist.",
   "status": False,
}
PreviousUpload Borrower DataNextLink Extracted Data

Last updated 2 years ago

Was this helpful?