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

# Create FBO Account Address

> Add an address to an FBO account

Adds a new address to an FBO account. An account can hold more than one address of the same type; the most recently created active address of that type is the one used.

**Permission:** `fbo_accounts:update`

## Path parameters

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

## Request body

<ParamField body="type" type="string" required>
  One of `return`, `billing`, or `alternate`
</ParamField>

<ParamField body="street" type="string" required>
  Street address
</ParamField>

<ParamField body="city" type="string" required>
  City
</ParamField>

<ParamField body="state" type="string" required>
  State or province
</ParamField>

<ParamField body="zip" type="string" required>
  Postal code
</ParamField>

<ParamField body="country" type="string" required>
  Country
</ParamField>

<ParamField body="isActive" type="boolean" default="true">
  Whether the address is active
</ParamField>

## Response

Returns the created address.

```json theme={null}
{
  "data": {
    "id": "ja7addrnew",
    "fboAccountId": "m97fbo456",
    "type": "return",
    "street": "123 Main St",
    "city": "Dallas",
    "state": "TX",
    "zip": "75001",
    "country": "US",
    "isActive": true,
    "updatedAt": 1709654321000,
    "createdAt": "2025-06-15T09:00:00Z"
  }
}
```

<Note>
  This endpoint supports the `Idempotency-Key` header. Replaying a request with the same key returns
  the original response instead of creating a second address.
</Note>
