> ## 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.

# Update FBO Account

> Update an existing FBO account

Updates an existing FBO account. Only provided fields are changed; at least one field must be supplied.

**Permission:** `fbo_accounts:update`

## Path parameters

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

## Request body

<ParamField body="firstName" type="string">
  Updated first name
</ParamField>

<ParamField body="lastName" type="string">
  Updated last name
</ParamField>

<ParamField body="email" type="string">
  Updated email address
</ParamField>

<ParamField body="phone" type="string">
  Updated phone number
</ParamField>

<ParamField body="businessName" type="string">
  Updated business name
</ParamField>

## Response

Returns the updated FBO account.

```json theme={null}
{
  "data": {
    "id": "fbo_abc123",
    "organizationId": "org_abc123",
    "firstName": "Jane",
    "lastName": "Smith-Johnson",
    "email": "jane.updated@example.com",
    "phone": "+15551234567",
    "businessName": "Smith Holdings LLC",
    "maxInsuredValueCents": "75000000",
    "createdAt": "2025-03-01T12:00:00Z"
  }
}
```
