The Financing Summary object Preview

Capital
Financing Summary
The Financing Summary object

Attributes

  • objectstring

    The object type: financing_summary

  • detailsnullable object

    Additional information about the financing summary. Describes currency, advance amount, fee amount, withhold rate, remaining amount, paid amount, current repayment interval, repayment start date, and advance payout date.

    • details.advance_amountinteger

      Amount of financing offered, in minor units. For example, $1,000 USD will be represented as 100000.

    • details.advance_paid_out_atnullable float

      The time at which the funds were paid out to the connected account’s Stripe balance. Given in milliseconds since unix epoch.

    • details.currencystring

      Currency that the financing offer is transacted in. For example, usd.

    • details.current_repayment_intervalnullable object

      The chronologically current repayment interval for the financing offer.

      • details.current_repayment_interval.due_atfloat

        The time at which the minimum payment amount will be due. If not met through withholding, the Connected account’s linked bank account or account balance will be debited. Given in seconds since unix epoch.

      • details.current_repayment_interval.duration_daysnullable integerPreview feature

        The length in days of the repayment interval.

      • details.current_repayment_interval.paid_amountnullable integer

        The amount that has already been paid in the current repayment interval, in minor units. For example, $100 USD will be represented as 10000.

      • details.current_repayment_interval.remaining_amountinteger

        The amount that is yet to be paid in the current repayment interval, in minor units. For example, $100 USD will be represented as 10000.

    • details.fee_amountinteger

      Fixed fee amount, in minor units. For example, $100 USD will be represented as 10000.

    • details.paid_amountinteger

      The amount the Connected account has paid toward the financing debt so far, in minor units. For example, $1,000 USD will be represented as 100000.

    • details.remaining_amountinteger

      The balance remaining to be paid on the financing, in minor units. For example, $1,000 USD will be represented as 100000.

    • details.repayments_begin_atnullable float

      The time at which Capital will begin withholding from payments. Given in seconds since unix epoch.

    • details.withhold_ratefloat

      Per-transaction rate at which Stripe will withhold funds to repay the financing.

  • financing_offernullable string

    The Financing Offer ID this Financing Summary corresponds to

  • statusnullable enumDeprecated

    Status of the Connected Account’s financing. /v1/capital/financing_summary will only return details for paid_out financing.

    Possible enum values
    accepted

    The Connected account has an accepted financing offer.

    delivered

    A financing offer has been marketed to the Connected account, but the account has not yet accepted.

    none

    The Connected account does not have any active financing.

The Financing Summary object
{
"object": "capital.financing_summary",
"details": {
"advance_amount": 100000,
"advance_paid_out_at": 1688424277.0578003,
"currency": "usd",
"current_repayment_interval": null,
"fee_amount": 10000,
"paid_amount": 100263,
"remaining_amount": 9737,
"repayments_begin_at": 1688424277.0577993,
"withhold_rate": 0.05
},
"financing_offer": "financingoffer_1NPvU12eZvKYlo2CotjdGRzu",
"status": "accepted"
}