---
title: "Fetch all field values defined for a single entity."
method: GET
path: "/v2/fields"
tags: ["Fields"]
---

# Fetch all field values defined for a single entity.

`GET /v2/fields`

## Query parameters

- `entity_id` integer, required
- `entity_type` 'booking' | 'property' | 'quote' | 'user' | 'guest' | 'owner', required — Entity types that support custom fields. This is a subset of EntityType enum values for entities that implement IFieldableEntity. Values must match the corresponding EntityType enum values to allow for translation.

## Response `200`

- PageableListOfFieldModel — Represents a single page plus meta data for a collection of records.
  - `items` FieldModel[] — The subset of records for the current page in the collection.
    - `id` integer — The ID of this record.
    - `entity_id` integer
    - `entity_type` 'booking' | 'property' | 'quote' | 'user' | 'guest' | 'owner' — Entity types that support custom fields. This is a subset of EntityType enum values for entities that implement IFieldableEntity. Values must match the corresponding EntityType enum values to allow for translation.
    - `field_definition_id` integer
    - `value` string
  - `limit` integer — The maximum number of records per page.
  - `next_page_url` string — URL to fetch the next page of records. A null value indicates that there are no more pages in the collection.
  - `offset` integer — The current offset from the start of the collection.
  - `count` integer — The total number of records in the collection.

---

[API](https://skmtc.net/ownerrez/apis/ownerrez-api.md) · [All operations](https://skmtc.net/ownerrez/apis/ownerrez-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ownerrez/ownerrez-api/versions/fa0c0f146039/schema)
