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

# Dispute Suggested Business Name

> Send an incorrect suggested legal name for manual review.

Requires an account-owned live API key with an associated user. The business must belong to that account, be non-archived and unlocked, and have `verificationStatus: "name_confirm_required"`.

```json theme={null}
{
  "expectedIdentityRevision": 1,
  "reason": "The suggested name belongs to a different legal entity."
}
```

`expectedIdentityRevision` must equal the value from the latest business response. `reason` is an optional string or null; whitespace-only text is treated as absent.

Returns `200` with `{"businessProfile": {...}}` and `verificationStatus: "admin_review"`. The transition is audited and uses the existing business-profile status webhook. It does not mark the business verified or submit a number request.

A missing or stale revision returns `409 business_identity_changed`. A business no longer awaiting name confirmation returns `409 invalid_state`, including a repeated completed dispute. Fetch the current business to reconcile a lost response. Sandbox keys or keys without a user return `403`; another account’s business returns `404`.

To accept the suggested name, use [PATCH Business Profile](/api-reference/v2/business-profiles/update-profile) with `companyLegalName` and `expectedIdentityRevision` instead.
