Skip to main content

List client notes

GET 

/clients/notes

JSON-RPC

clients.notes.search

Request​

Bodyrequired

    limitinteger

    Number of rows to return (for pagination).

    Default value: 20
    offsetinteger

    Number of rows to skip (for pagination).

    Default value: 0
    orderstring[]

    List of columns to order results by.

    Possible values: [clients_id, -clients_id, dt, -dt, id, -id, users_id, -users_id]

    Default value: []
    idinteger[]

    Client note ID.

    clients_idinteger[]

    Client ID.

    users_idinteger[]

    User ID (author of the note).

Responses​

List of client note objects.

Schema
  • Array [
  • object
  • ]

Authorization: X-Api-Key

name: X-Api-Keytype: apiKeyin: headerdescription: Token for API access
curl -L 'https://docs.jerasoft.net/clients/notes' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Api-Key: <X-Api-Key>'
Request Collapse all
Auth
Body required
{
  "limit": 20,
  "offset": 0,
  "order": [
    "clients_id"
  ],
  "id": [
    0
  ],
  "clients_id": [
    0
  ],
  "users_id": [
    0
  ]
}