Skip to main content
POST

Authorizations

Authorization
string
header
required

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

Path Parameters

businessId
string<uuid>
required

The UUID of the business.

loanId
string<uuid>
required

The UUID of the loan.

Body

application/json

The proceed to create.

A loan proceed: funds (or an asset) received from the loan.

loan_proceed_type
enum<string>
required

Discriminator. Must be ASSET.

Available options:
ASSET
amount
integer<int64>
required

Proceed amount, in cents.

date
string<date>
required

Date the proceed was received.

asset
Existing asset · object
required

Reference to the asset funded by an ASSET proceed. Either link an existing asset by id or external_id, or create a new asset inline with new_asset.

external_id
string | null

Unique ID of the proceed in your system for linking purposes.

Response

201 - application/json

Loan proceed created successfully.

data
object
required

A loan proceed: funds (or an asset) received when a loan is drawn. See the Loan Proceed object.