Skip to main content

Get a list of note types

Retrieve a paged collection of note types (required scope notes:read)

Query Parameters
    sortBy NoteTypeSortOptions

    Possible values: [name]

    The field to sort items in the page by

    direction SortDirection

    Possible values: [ascending, descending]

    The direction to apply the sort

    name string[]

    Only return note types where name matches with the value(s) provided

    id int64[]

    Only return note types where id matches the value(s) provided

    pageNumber int32

    Possible values: >= 1 and <= 2147483

    The page number being requested (minimum: 1, maximum: 2147483)

    pageSize int32

    Possible values: >= 1 and <= 1000

    The page size being requested (minimum: 1, maximum: 1000)

Header Parameters
    Customer-Id int64 required

    The customer identifier

Responses

Success


Schema
    items object[]

    The items returned for the requested page

  • Array [
  • id int64

    The unique identifier of the note type

    name string

    The name of the note type

    defaultOwnedByUserId int64 nullable

    The default owner for notes of this type

    createdAt date-time

    The UTC timestamp of when this note type was created

  • ]
  • pageNumber int32

    The page number of the response where 1 is the first page

    pageSize int32

    The number of items requested for the current page

    pageItemCount int32

    The number of items returned in the current page

Loading...