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

# Get All Properties

Get all properties that your user email owns or shares.

### Request Params

*None*

### Request Body

<ParamField body="email" type="string" required>
  Email address of the user to query properties for
</ParamField>

### Response

The response is an object where each key is a property ID, containing the following fields:

<ParamField path="[propertyId]" type="object">
  <ParamField path="name" type="string">
    Name of the property
  </ParamField>

  <ParamField path="owner" type="string">
    Email address of the property owner
  </ParamField>

  <ParamField path="parent" type="string">
    Parent property ID if applicable, empty string if none
  </ParamField>

  <ParamField path="users" type="array">
    Array of users who have access to the property
  </ParamField>
</ParamField>
