Skip to main content

Querying for notes

GET 

/api/v3/note

Available query parameter values for filtering:

  • context_str (this should be one of: customer, billing_package, invoice, user, quote, item)
  • context_id

Request

Query Parameters

    where string

    context_str:EQUALS:customer

    order string

    context_id:ASC

    limit string

    2

    offset string

    8

Responses

Object was fetched successfully

Schema

    code integer
    status string
    message stringnullable
    details objectnullable

    response

    object[]

  • Array [

  • note_id integer

    Note ID #

    user_id integer

    User ID #

    admin_id integer

    Admin ID #

    note string

    Note text

    note_is_pinned boolean

    Whether or not the note was pinned

    context_str string

    The type of object the note is attached to

    context_id string

    The object ID # the note is attached to

    note_datetime string

    Date/time the note was created

  • ]

Loading...