Skip to main content
POST
/
loan-eligibility
/
bulk
cURL
curl --request POST \
  --url https://api.insightai.in/loan-eligibility/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file=@example-file
{
  "task_id": "<string>",
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data

A file containing multiple customer details in CSV or JSON format.

file
file

The bulk file containing multiple customer loan details (CSV/JSON).

Response

Bulk loan eligibility response

task_id
string

A unique ID generated for the bulk processing task.

status
string

Status of the bulk processing request (e.g., 'processing', 'completed').

I