Get loan request form

This POST API is used to download a loan request form. Pass loan request object as the request body. Key to note is that {"zohoRequestId": "string"} needs to be in the request object.

Resource URL

https://eguarantorship-api.presta.co.ke/api/v1/zoho/PDF

OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
  .url("https://eguarantorship-api.presta.co.ke/api/v1/zoho/PDF")
  .post({"zohoRequestId": "string"})
  .addHeader("Accept", "*/*")
  .addHeader("Content-Type", "application/json")
  .build();

Response response = client.newCall(request).execute();