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

# Delete FBO Account Address

> Deactivate an FBO account address

Retires an address on an FBO account by marking it inactive (`isActive: false`). The address is not erased, so past shipments that used it stay intact. It is returned by [List FBO Account Addresses](/api-reference/fbo-accounts/list-addresses) with `isActive: false`.

**Permission:** `fbo_accounts:update`

## Path parameters

<ParamField path="id" type="string" required>
  The FBO account ID
</ParamField>

<ParamField path="addressId" type="string" required>
  The address ID
</ParamField>

## Response

Returns the deactivated address.

```json theme={null}
{
  "data": {
    "id": "ja7addr123",
    "fboAccountId": "m97fbo456",
    "type": "return",
    "street": "123 Main St",
    "city": "Dallas",
    "state": "TX",
    "zip": "75001",
    "country": "US",
    "isActive": false,
    "updatedAt": 1709654321000,
    "createdAt": "2025-03-01T12:00:00Z"
  }
}
```

<Note>
  Deactivating an address that is already inactive is a no-op and still returns `200` with the
  address.
</Note>
