Skip to main content
A tradeline represents an ongoing payment obligation (rent, child support, loan, etc.) being reported to credit bureaus. Each tradeline belongs to a consumer and tracks a specific payment type.

Creating a tradeline

Required fields

Optional fields

Auto-computed fields

These fields are managed automatically and should not be set manually:

Updating a tradeline

Only mutable fields can be updated via PATCH: Can change: payment_type_label, credit_limit, highest_balance, ecoa_code, report_to_bureaus, is_active, account_closed_date Cannot change: consumer_id, payment_type, account_opened_date

Closing a tradeline

DELETE /tradelines/:id closes the tradeline (it’s not a hard delete):
  • Sets account_status to "closed"
  • Sets is_active to false
  • Sets account_closed_date to today
The tradeline remains visible in list results and via GET, but will no longer accept new payments.
Closed tradelines cannot be re-opened. Create a new tradeline instead.

Authorization

The payment_type must be in the partner’s enabled_payment_types list (if configured). If not, you’ll get a 403 AUTHORIZATION_ERROR.