Get all notes for a circle
Includes notes for a circle or within that circle's client's plans, cases, tasks and risks.
Headers
-
Content-Type string
-
Accept string
Query parameters
-
include string
Comma separated list of relationships to include in the response. Valid relationships are [tags, mentionedAccounts].
-
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[notable_type] string
Filter notes by a specific notable model. Valid types are: client, plan, case, task, risk.
-
sort string
Field to sort by. Valid fields are [created_at, updated_at, type]. Negative sign to denote DESC. Defaults to 'created_at'.
-
per_page integer
Number of results to return with pagination (Default 15. Max 500).
curl \
--request GET https://api.plannrcrm.com/api/v1/circles/circle_uuid/notes \
--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": "46e9ba9e-96fa-42bd-a543-a8942b753a7d",
"colour": "#ef4582",
"created_at": "2025-02-20T10:13:01+00:00",
"updated_at": "2025-02-20T10:13:01+00:00"
}
],
"type": "meeting",
"uuid": "b299fcd6-c5a4-4aff-99e5-699553e45cd3",
"edited": true,
"account": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "43de8e31-990d-4bab-9872-d891764c7dae",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-02-20T10:13:01+00:00",
"first_name": "Gareth",
"updated_at": "2025-02-20T10:13:01+00:00",
"with_login": true,
"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-02-20T10:13:01+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-02-20T10:13:01+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"previous_review_date": "2025-02-20T10:13:01+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-02-20T10:13:01+00:00"
},
"notable": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "b0bd81a4-e5b1-4ce6-98f0-bf1025ad71e0",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-02-20T10:13:01+00:00",
"first_name": "Gareth",
"updated_at": "2025-02-20T10:13:01+00:00",
"with_login": true,
"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-02-20T10:13:01+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-02-20T10:13:01+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"previous_review_date": "2025-02-20T10:13:01+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-02-20T10:13:01+00:00"
},
"contents": "Great work",
"created_at": "2025-02-20T10:13:01+00:00",
"updated_at": "2025-02-20T10:13:01+00:00",
"notable_type": "client",
"mentioned_accounts": [
{
"item": "Gareth Thompson",
"contents": "<span data-type=\"mention\" data-account-uuid=\"4125a2eb-345d-41b3-8d57-0861c4b6beb5\">@Gareth Thompson</span>"
}
],
"external_references": [
{
"uuid": "c82bd602-c6ff-4f41-a82f-6e8450c5f74d",
"reference": "AB123456",
"created_at": "2025-02-20T10:13:01+00:00",
"updated_at": "2025-02-20T10:13:01+00:00",
"third_party": "nucleus"
}
]
}
]
}