Jump to Content
Presta Eguarantorship API
HomeGuidesRecipesAPI ReferenceChangelogDiscussions
v1.0

Presta Eguarantorship API
API Reference
v1.0HomeGuidesRecipesAPI ReferenceChangelogDiscussions

Authentication

  • Authentication API

Eguarantorship APIs

  • Members
    • Import members
    • Find Specific member
    • Witnessed Loans
    • Guaranteed loans
    • Current loans
    • Member Update
    • Search members
    • Find member by Member Number
    • Accept Terms and Conditions
    • Summary
  • Witness
    • Member Witnessed Loan Requests
    • Accept to witness
  • Loans
    • Import Loans
    • Fetch Loans
    • Fetch Loan By RefId
    • Fetch Loan Guarantors
  • Guarantors
    • Import loan Guarantors
  • Loan Requests
    • Fetch Loan Requests
  • Loan Requests Forms
    • Loan Request form
    • Completion Certificate
    • Templates
    • Template Details
  • Loan Products
    • Import existing loan products
    • Find Product by Reference Number
    • Create a new Loan Product
    • All loan products
    • Drop existing Loan Product

Presta Zoho Integration

  • API For Creating a Lead
  • API For Converting a Lead
  • API For Creating a Deal
  • API For Updating a Lead
  • API For Listing Leads
  • API For Listing a Single Lead
Powered by 

Fetch Loan By RefId

This API is used to fetch a specific loan by passing a loan's reference number (refId) as a parameter in the URL.

Resource URL

https://eguarantorship-api.presta.co.ke/api/v1/{refId}

OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
  .url("https://eguarantorship-api.presta.co.ke/api/v1/{refId}")
  .get()
  .addHeader("Accept", "*/*")
  .build();

Response response = client.newCall(request).execute();
  • Table of Contents
    • Resource URL