---
title: "Find notes"
method: GET
path: "/v2/property_claims/{property_claim_id}/notes"
tags: ["Property Claim"]
---

# Find notes

`GET /v2/property_claims/{property_claim_id}/notes`

## Query parameters

- `order` 'newest' | 'oldest'
- `limit` integer
- `after` string, jwt

## Headers

- `X-Encircle-Attribution` string
- `X-Encircle-Request` string

## Response `200`

A list of `Note`s in the given claim.

- object
  - `list` NoteResponse[], required
    - `id` integer, required
    - `client_created` string, date-time, nullable, required — `client_created` is the timestamp at which a user's client created the model. It is typically earlier than the `server_created` timestamp, but since this timestamp is provided by the client and not verified, it could have been altered to any time in the past or future. The Encircle mobile app allows users to work offline. This timestamp captures the time that the model was created locally, regardless of when the client goes back online. Encircle web and mobile applications typically display the earlier of the `client_created` and `server_created` timestamps. Refer to `server_created` for the timestamp recorded by Encircle servers. A [RFC 3339](https://tools.ietf.org/html/rfc3339#section-5.6) compliant `date-time` string.
    - `server_created` string, date-time, required — `server_created` is the timestamp at which Encircle servers created the model. It is typically later than the `client_created` timestamp (unless the client had provided an inaccurate timestamp). This unbounded delay depends on how long the client took to sync with the server. The Encircle mobile app allows users to work offline, which means that a client can create a model, wait a day, then go online and sync with Encircle servers. The server's timestamp would be delayed by about a day after the model's creation on the client. Refer to `client_created` for the client provided timestamp. A [RFC 3339](https://tools.ietf.org/html/rfc3339#section-5.6) compliant `date-time` string.
    - `creator` ActorResponse, required
      - `actor_type` 'User', required
      - `actor_identifier` string, required — A string that identifies the actor. The identifier is an email address when the `actor_type` is `User`.
    - `title` string, nullable, required — The title of the `Note`.
    - `text` string, nullable, required — The contents of the `Note`.
  - `cursor` object, required
    - `order` string, required — Specifies the requested ordering of results. See the `order` query parameter for explanations of all the options.
    - `limit` integer, required — Maximum number of results that were included in this response. See the `limit` query parameter.
    - `after` string, jwt, nullable, required — A string that can be passed as an `after` query parameter to fetch the next page of results. If `null`, it means that there are no further results and that the returned data is the last page.

## Other responses

- `400` — Error processing request.
- `401` — Authentication error.
- `404` — Requested resource does not exist.

---

[API](https://skmtc.net/encircleapp/apis/encircle-public-api.md) · [All operations](https://skmtc.net/encircleapp/apis/encircle-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/encircleapp/encircle-public-api/revisions/0e70222a2c6d/schema)
