Skip to main content
The loan agreement object contains a document_url where the agreement is hosted and can have a status of pending_signature, signed, or expired. Loan agreements that are not signed within 24 hours expire and need to be re-created

Create loan agreement

POST /loan_agreements

Sign loan agreement

POST /loan_agreements/{loan_agreement_id}/sign

Retrieve a loan agreement

GET /loan_agreements/{loan_agreement_id}

List loan agreements

GET /loan_agreements

Load Agreement Object

Parameters

id
string
Unique identifier for the loan agreement
application_id
string
The application_id of the corresponding loan application the agreement is for
created_on
string
Timestamp the loan agreement object is created on
document_url
string
Url where the loan agreement document is hosted
Timestamp of when e-signature is completed
status
enum
The status of the document. Can be one of pending_signature, signed, or expired
{
  "status": "pending_signature",
  "id": "doc_43da3b3f95c745e1985a71e9a00d6c27",
  "application_id": "app_a9d2f388030d4f4296f80fc327e08d0d",
  "signature_timestamp": null,
  "document_url": "https://production-formapi-docs.s3.amazonaws.com/store/acc_QqdcDH47A63qKZbK3S/templates/tpl_4zqGxezHzrfqDaxGr2/submissions/sub_J9PbHbXYbL4jzRxc3R.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJESVN6QC4ACN3XSQ%2F20221231%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20221231T204739Z&X-Amz-Expires=900&X-Amz-SignedHeaders=host&X-Amz-Signature=cf0c6429ef72ca06d861cb912f5d1cf376a5c26c7f904aaa9bf08f10103785bd",
  "created_on": "2022-12-31T20:47:38.152Z"
}
I