> ## Documentation Index
> Fetch the complete documentation index at: https://docs.younegotiate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Creditor Removed

> ABC Collections removes Jane's account from active portal handling.

## Real-World Example

ABC Collections removes Jane's account from active portal handling. Jane should no longer be asked to negotiate it, but the portal can still show it as Creditor Removed when the record must remain visible.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Creditor deactivates or removes account"] --> B["Portal updates consumer account status"]
    B --> C["Account appears in Creditor Removed"]
    C --> D["Consumer sees limited historical context"]
    classDef default fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef actor fill:#E0F2FE,stroke:#0284C7,stroke-width:2px,color:#0C4A6E;
    classDef system fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef decision fill:#FEF3C7,stroke:#D97706,stroke-width:2px,color:#78350F;
    classDef risk fill:#FEE2E2,stroke:#DC2626,stroke-width:2px,color:#7F1D1D;
    classDef outcome fill:#DCFCE7,stroke:#16A34A,stroke-width:2px,color:#14532D;
    class A actor;
    class B,C system;
    class D outcome;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should show deactivated creditor records only when the consumer is allowed to see historical context.
* It should remove active negotiation, payment setup, and plan actions.
* It should keep creditor scoping intact even when the account is inactive.
* It should let a consumer hide a creditor-removed account from My Accounts only when the identity keys match.
* It should keep payment history available for removed accounts that have transactions.

## How It Should Not Work

* It should not allow new payments or offers after the creditor has removed the account from active handling.
* It should not disappear in a way that confuses consumers if historical visibility is expected.
* It should not mix creditor removal with consumer cancellation.
* It should not hard-delete creditor-removed records when the consumer chooses Delete Account; the app should mark them hidden from that consumer's dashboard.
* It should not let a consumer hide a non-deactivated account or another consumer's removed account.

## Developer Notes

* This tab maps to deactivated.
* Deactivation can affect communication jobs, scheduled follow-ups, and account visibility.
* Consumer-side Delete Account uses `hidden_by_consumer_at`; it is a dashboard visibility action, not a creditor data deletion.

## Related App Areas

* `app/Enums/ConsumerStatus.php`
* `app/Livewire/Consumer/MyAccount.php`
* `app/Livewire/Consumer/Traits/MyAccounts/StartOver.php`
* `app/Console/Commands/DeactivateOrRestartExpiredConsumerNegotiations.php`
