Skip to content

Update

Update account credit configuration
patch/v1/financial_accounts/{financial_account_token}/credit_configuration

Update an account's credit configuration

Path Parameters
financial_account_tokenstring
formatuuid
Body Parameters
credit_limitnumber
optional
minimum0
credit_product_tokenstring
optional

Globally unique identifier for the credit product

external_bank_account_tokenstring
optional
formatuuid
tierstring
optional

Tier to assign to a financial account

minLength1
Returns
account_tokenstringcharged_off_reasonenumcredit_limitnumbercredit_product_tokenstringexternal_bank_account_tokenstringfinancial_account_stateenumis_spend_blockedbooleantierstringFinancialAccountCreditConfig
Request example Request
curl https://api.lithic.com/v1/financial_accounts/$FINANCIAL_ACCOUNT_TOKEN/credit_configuration \
    -X PATCH \
    -H 'Content-Type: application/json' \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "account_token": "b68b7424-aa69-4cbc-a946-30d90181b621",
  "charged_off_reason": "DELINQUENT",
  "credit_limit": 0,
  "credit_product_token": "credit_product_token",
  "external_bank_account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
  "financial_account_state": "PENDING",
  "is_spend_blocked": true,
  "tier": "tier"
}