Skip to main content
Consumers represent the individuals whose payments are being reported to credit bureaus. You register a consumer once, then create tradelines and report payments against them.

Creating a consumer

Required fields

Optional fields

SSN handling

SSNs are encrypted at rest using PGP symmetric encryption and are never returned in any API response, including GET requests.
You can update an SSN via PATCH /consumers/:id — the new value will be re-encrypted.

Uniqueness

Uniqueness is enforced per-partner on email and external_id. Attempting to create a duplicate returns 409 CONFLICT.

Soft deletion

DELETE /consumers/:id is a soft delete:
  • Sets deleted_at to the current timestamp
  • Deactivates all related tradelines (is_active = false)
  • Consumer no longer appears in list results or is accessible by ID
Delete response

Listing and filtering

See Pagination for page and per_page params.