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

# Get FBO Intake Address

> Get the address an account should send inventory to

Returns the address to send this account's inventory to, along with a ready-to-display version in `formatted`.

The address includes the account's vault ID, which is what identifies arriving inventory as belonging to this account. Use it exactly as returned.

**Permission:** `fbo_accounts:read`

## Path parameters

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

## Response

```json theme={null}
{
  "data": {
    "firstName": "Jane",
    "lastName": "Smith",
    "street": "1200 Vault Way",
    "addressLine2": "PV-100234",
    "city": "Dallas",
    "state": "TX",
    "zip": "75001",
    "country": "US",
    "formatted": "Jane Smith\n1200 Vault Way\nPV-100234\nDallas, TX 75001",
    "vaultId": "PV-100234",
    "placement": "address_line_2"
  }
}
```

<ResponseField name="formatted" type="string">
  The address as newline-separated lines, ready to display.
</ResponseField>

<ResponseField name="vaultId" type="string">
  The vault ID included in the address.
</ResponseField>

<ResponseField name="placement" type="string">
  Where the vault ID appears in the address — `address_line_2` or `last_name`. When it is
  `last_name`, the vault ID is part of `lastName` and `addressLine2` is `null`.
</ResponseField>

<Note>
  Returns `404` if the account does not belong to your organization, or if the account does not have
  a vault ID yet.
</Note>
