---
title: "Search notes"
method: GET
path: "/v1/Notes"
tags: ["Notes"]
---

# Search notes

`GET /v1/Notes`

Search for one or more notes.

## Query parameters

- `search.note_id` integer[]
- `search.customer_id` integer[]
- `search.request_id` integer[]
- `search.note_type_id` integer[]
- `search.created_date_start` string, date-time
- `search.created_date_end` string, date-time
- `search.order_id` integer[]
- `search.page_size` integer
- `search.page` integer
- `search.sort` string

## Response `200`

OK

- RevWebAPIModelsGetOrSearchOfRevAppSearchModelsResponseOfRevAppModelsNote
  - `ok` boolean
  - `has_more` boolean — Helper for pagination. Indicates there are more records returned.
  - `record_count` integer — Total number of records found by the search.
  - `records` RevAppModelsNote[] — List of records returned.
    - `note_id` integer — Primary identifier for this note.
    - `subject` string — Short description of what this note is about.
    - `body` string — Main text of the note.
    - `created_date` string, date-time — Date and time this note was created.
    - `created_by` integer — Foreign identifier of the user who created this note.
    - `customer_id` integer — Foreign identifier indicating an association with an account.
    - `order_id` integer — Foreign identifier indicating an association with an order.
    - `request_id` integer — Foreign identifier indicating an association with a request.
    - `task_id` integer — Foreign identifier indicating an association with a task.
    - `note_type_id` integer — Foreign identifier indicating an association with a note type.
    - `links` RevAppComponentsLink[]
      - `rel` string
      - `href` string

## Other responses

- `500` — InternalServerError

---

[API](https://skmtc.net/rev-io/apis/rev-io-api.md) · [All operations](https://skmtc.net/rev-io/apis/rev-io-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rev-io/rev-io-api/revisions/135571434f6c/schema)
