API Reference › Servicing Plane › Portal contracts › Retrieve the current upload instructions Retrieve the current upload instructions GET https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current Implemented Connector callback Connector authority ·Short-lived upload session token from the exchange step
Returns what to send, by when, and how many uploads remain for the session. The payload carries only the lender's own copy and the invitation state — no borrower name, account number, loan detail, or internal identifier.
cURL Node Python
Request
curl https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current \
-H "X-LendEasy-Voice-Task-Token: $DISPATCH_TOKEN" await fetch(`https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current` , {
method: "GET" ,
headers: { "X-LendEasy-Voice-Task-Token" : dispatchToken },
});requests.get(
f"https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current" ,
headers={"X-LendEasy-Voice-Task-Token" : dispatch_token},
)200 400
{
"accepted": true ,
"instructions": {
"evidenceType": "DOCTORS_MEDICAL_LEAVE_CERTIFICATE",
"state": "OPENED",
"expiresAt": "2026-08-01T18: 00 :00Z",
"uploadsRemaining": 1 ,
"title": "Please send us your doctor's letter",
"mustShow": [
"Your name",
"That you are currently unable to work",
"The date your leave started",
"The date you are expected to return to work",
"Your doctor's name, practice and signature",
"The date they issued it"
],
"doNotSend": [
"A diagnosis, symptoms, treatment or medication",
"Your medical history or records",
"An employer leave letter",
"Disability benefit paperwork"
],
"privacyNote": "We only need the facts listed above. Please do not send anything else — we do not need it and we would rather not hold it.",
"acceptedFormats": [
"PDF",
"JPEG",
"PNG"
]
}
}{
"error": "The callback body is invalid."
}
cURL Node Python
Request
curl https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current \
-H "X-LendEasy-Voice-Task-Token: $DISPATCH_TOKEN" await fetch(`https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current` , {
method: "GET" ,
headers: { "X-LendEasy-Voice-Task-Token" : dispatchToken },
});requests.get(
f"https://sandbox.api.lendeasy.ai /v1/servicing/borrower-document-uploads/current" ,
headers={"X-LendEasy-Voice-Task-Token" : dispatch_token},
)200 400
{
"accepted": true ,
"instructions": {
"evidenceType": "DOCTORS_MEDICAL_LEAVE_CERTIFICATE",
"state": "OPENED",
"expiresAt": "2026-08-01T18: 00 :00Z",
"uploadsRemaining": 1 ,
"title": "Please send us your doctor's letter",
"mustShow": [
"Your name",
"That you are currently unable to work",
"The date your leave started",
"The date you are expected to return to work",
"Your doctor's name, practice and signature",
"The date they issued it"
],
"doNotSend": [
"A diagnosis, symptoms, treatment or medication",
"Your medical history or records",
"An employer leave letter",
"Disability benefit paperwork"
],
"privacyNote": "We only need the facts listed above. Please do not send anything else — we do not need it and we would rather not hold it.",
"acceptedFormats": [
"PDF",
"JPEG",
"PNG"
]
}
}{
"error": "The callback body is invalid."
}