Headers
-
Content-Type
string -
Accept
string
Path parameters
-
notableType
integer Required -
notableUuid
string Required -
notable_type
string Required The type of model to look for. Make sure it is a valid model type that can have notes. Valid types are: ['account', 'board_task', 'case', 'conversation', 'illustration'] .
-
notable_uuid
string Required The UUID of the notable model.
Query parameters
-
include
string Comma separated list of relationships to include in the response. Valid relationships are [tags, mentionedAccounts,notable].
-
filter[uuid]
string Filter by a comma separated list of UUIDs.
-
filter[type]
string Note type to filter by. Valid types are [call, note, meeting, email]
-
filter[date_from]
string Note created_at date to filter from a specific date, can be used with date_to for a range.
-
filter[date_to]
string Note created_at date to filter to from a specific date, can be used with date_from for a range.
-
filter[contents]
string Filter notes by a string to see if it's contents contains that string.
-
filter[path]
string Filter notes by a string to see if the path contains that string.
-
filter[path_exact]
string Filter notes by a string to see if the path is that string.
-
per_page
integer Number of results to return with pagination (Default 15. Max 500).
-
sort
string Field to sort by. Valid fields are [created_at, updated_at, type]. Negative sign to denote DESC. Defaults to 'created_at'.
curl \
--request GET 'https://api.plannrcrm.com/api/v1/note/notableType/notableUuid' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
{
"data": [
{
"tags": [
{
"name": "Mortgage",
"slug": "mortgage",
"uuid": "19559567-a57e-4cd7-9611-2c6b98f3a5d7",
"colour": "#ef4582",
"created_at": "2025-05-29T16:20:12+01:00",
"updated_at": "2025-05-29T16:20:12+01:00"
}
],
"type": "meeting",
"uuid": "69206d17-7295-4f0f-aad9-68bf22d946da",
"edited": true,
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "11757a24-5bb1-4dfe-98cb-0d321f85bb8e",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-05-29T16:20:12+01:00",
"first_name": "Gareth",
"updated_at": "2025-05-29T16:20:12+01:00",
"with_login": true,
"inactive_at": "2025-05-29",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2025-05-29T16:20:12+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-05-29T16:20:12+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-05-29T16:20:12+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-05-29T16:20:12+01:00"
},
"notable": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "3b80bab2-088c-430b-b7a1-8aaf731e13dd",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-05-29T16:20:12+01:00",
"first_name": "Gareth",
"updated_at": "2025-05-29T16:20:12+01:00",
"with_login": true,
"inactive_at": "2025-05-29",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2025-05-29T16:20:12+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-05-29T16:20:12+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-05-29T16:20:12+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-05-29T16:20:12+01:00"
},
"contents": "Great work",
"created_at": "2025-05-29T16:20:12+01:00",
"updated_at": "2025-05-29T16:20:12+01:00",
"author_name": "John Smith",
"notable_type": "client",
"mentioned_accounts": [
{
"item": "Gareth Thompson",
"contents": "<span data-type=\"mention\" data-account-uuid=\"8b206f97-e92e-4f9f-8aa2-24fa09ab109a\">@Gareth Thompson</span>"
}
],
"external_references": [
{
"uuid": "19a5b10d-e112-4cb0-91b9-493b65172e7d",
"reference": "AB123456",
"created_at": "2025-05-29T16:20:12+01:00",
"updated_at": "2025-05-29T16:20:12+01:00",
"third_party": "nucleus"
}
]
}
]
}