Draw down on a LOC

Draw down on a LOC

POST https://sandbox-api.stilt.com/v1/users/{user_id}/loc/{loc_id}/draw

Returns an object with the available_credit as a result of the drawdown. If unsuccessful, an error will be returned (for example if the drawdown amount exceeds the available credit).

Path Parameters

NameTypeDescription

user_id*

string

The uuid of the user

loc_id*

string

The uuid of the LOC

Request Body

NameTypeDescription

disbursement_bank_info*

object

An object containing the bank account to disburse the drawdown to, structured as follows: { "ach_routing_number": "103100195",

"bank_account_number": "456455535",

"bank_name": "Chime",

"bank_account_name": "Chime checking",

"account_type" : "checking"

}

amount*

float

The amount to draw down, in USD

disbursement_date

String

The date to initiate the disbursement, formatted as YYYY-MM-DD.

Format: YYYY-MM-DD

{
    "available_credit": 4500.0,
    "current_credit": 4200.0
}

Last updated