---
title: "Fetch all owners."
method: GET
path: "/v2/owners"
tags: ["Owners"]
---

# Fetch all owners.

`GET /v2/owners`

## Query parameters

- `active` boolean, nullable
- `include_tags` boolean
- `include_fields` boolean

## Response `200`

A pageable list of owner models.

- PageableListOfOwnerModel — Represents a single page plus meta data for a collection of records.
  - `items` OwnerModel[] — The subset of records for the current page in the collection.
    - `id` integer — The ID of this record.
    - `fields` FieldValueModel[] — A collection of field names and values.
      - `code` string
      - `value` string
    - `tags` string[] — A collection of tag names.
    - `active` boolean — The owner status.
    - `address` AddressModel
      - `id` integer — The ID of this record.
      - `city` string
      - `country` string
      - `is_default` boolean
      - `postal_code` string
      - `province` string
      - `state` string
      - `street1` string
      - `street2` string
      - `type` 'home' | 'work' | 'other'
    - `address_id` integer, nullable — The owner's address ID.
    - `email_address` string — The owner's email address.
    - `last_owner_statement_id` integer, nullable — The ID of the last statement created for this owner.
    - `name` string — The name of the owner.
    - `notes` string — Notes about this owner.
    - `phone` PhoneModel
      - `id` integer — The ID of this record.
      - `extension` string
      - `is_default` boolean, nullable
      - `number` string
      - `type` 'home' | 'work' | 'mobile' | 'other'
    - `phone_id` integer, nullable — The owner's phone number ID.
  - `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)
