Lines of Credit

A LOC object can be originated for a given User object. LOCs are identified by a unique, random id.

Objects

The application object

The LOC object

The offer object

The statement object

Endpoints

Create a LOC application

​POST /v1/users/{uuid}/loc/applications​

Retrieve a promissory note

GET /v1/users/{uuid}/loc/{uuid}/documents/promissory_note​

Activate a LOC

​PATCH /v1/users/{uuid}/loc/{uuid}

Submit a repayment

​POST /v1/users/{uuid}/loc/{uuid}/payments​

Retrieve a LOC's statements

GET /v1/users/{uuid}/loc/{uuid}/statements​

Drawdown on a LOC

POST /v1/users/{uuid}/loc/{uuid}/draw​

List all drawdowns for a LOC

​GET /v1/users/{uuid}/loc/{uuid}/disbursements​

Retrieve a LOC application

​GET /v1/users/{uuid}/loc/applications/{uuid}

List a user's LOC applications

GET /v1/users/{uuid}/loc/applications​

List all LOC applications

​GET /v1/users/loc/applications​

Retrieve a LOC

GET /v1/users/{uuid}/loc/{uuid}​

List a user's LOCs

​GET /v1/users/{uuid}/loc​

List all LOCs

​GET /v1/users/loc​

Retrieve a repayment's details

GET /v1/users/{uuid}/loc/{uuid}/payments/{uuid}​

List all a LOC's repayments

GET /v1/users/{uuid}/loc/{uuid}/payments

Last updated