Path parameters
-
Optional parameter. 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'] .
-
Optional parameter. The UUID of the notable model.
Query parameters
-
Comma separated list of relationships to include in the response. Valid relationships are [tags, mentionedAccounts,notable].
-
Filter by a comma separated list of UUIDs.
-
Note type to filter by. Valid types are [call, note, meeting, email]
-
Note created_at date to filter from a specific date, can be used with date_to for a range.
-
Note created_at date to filter to from a specific date, can be used with date_from for a range.
-
Filter notes by a string to see if it's contents contains that string.
-
Filter notes by a string to see if the path contains that string.
-
Filter notes by a string to see if the path is that string.
-
Number of results to return with pagination (Default 15. Max 500).
-
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/architecto/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"data": [
{
"tags": [
{
"name": "Mortgage",
"slug": "mortgage",
"uuid": "13ee5568-6cf6-4ec0-85f4-da10abc0fe93",
"colour": "#ef4582",
"created_at": "2025-06-26T11:37:06+01:00",
"updated_at": "2025-06-26T11:37:06+01:00"
}
],
"type": "meeting",
"uuid": "8671c440-35f8-465f-be5e-42947773815b",
"edited": true,
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "ca702b17-c0fe-49db-b6c3-53ce5753bdf1",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-06-26T11:37:06+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-26T11:37:06+01:00",
"with_login": true,
"inactive_at": "2025-06-26",
"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-06-26T11:37:06+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-06-26T11:37:06+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-06-26T11:37:06+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-06-26T11:37:06+01:00"
},
"notable": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "643f4ff4-27d6-4ac8-8d5a-957bce436251",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-06-26T11:37:06+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-26T11:37:06+01:00",
"with_login": true,
"inactive_at": "2025-06-26",
"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-06-26T11:37:06+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-06-26T11:37:06+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-06-26T11:37:06+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-06-26T11:37:06+01:00"
},
"contents": "Great work",
"created_at": "2025-06-26T11:37:06+01:00",
"updated_at": "2025-06-26T11:37:06+01:00",
"author_name": "John Smith",
"notable_type": "client",
"mentioned_accounts": [
{
"item": "Gareth Thompson",
"contents": "<span data-type=\"mention\" data-account-uuid=\"8284dee0-7be1-4ec3-ba68-86aebd196645\">@Gareth Thompson</span>"
}
],
"external_references": [
{
"uuid": "125675d1-3b89-4025-b88f-20cf9da3cee8",
"reference": "AB123456",
"created_at": "2025-06-26T11:37:06+01:00",
"updated_at": "2025-06-26T11:37:06+01:00",
"third_party": "nucleus"
}
]
}
]
}