TAG LINE
TAG LINE
SMALL TITLE

Note Type

(API Version v6)


System defined type for a Note


What can you do with NoteType?

  • GET NoteType/
    Retrieve all of the NoteType objects.

  • GET NoteType/Paged
    Retrieve all of the NoteType objects in a paged fashion.

  • GET NoteType/{id}
    Retrieve an instance of the NoteType object by its ID.


Properties

Property Details
identity
READ-ONLY
"identity": 25
Type: Number
This is the unique numeric identifier for the NoteType
ownerId
READ-ONLY
"ownerId": 13
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
READ-ONLY
"name": "Default"
Type: String
System defined name for this NoteType.


End Points

GETNoteType/
Retrieve all of the NoteType objects.
Retrieve all of the NoteType objects.
GET NoteType/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 13,
            "ownerName": "Sample Text Data",
            "name": "Default"
        }
    ]
}
GETNoteType/Paged
Retrieve all of the NoteType objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the NoteType objects in a paged fashion.
GET NoteType/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 6,
                "ownerName": "Sample Text Data",
                "name": "Default"
            }
        ]
    }
}
GETNoteType/{id}
Retrieve an instance of the NoteType object by its ID.
{id}Unique identifier for the NoteType object.
Retrieve an instance of the NoteType object by its ID.
GET NoteType/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 20,
        "ownerName": "Sample Text Data",
        "name": "Default"
    }
}