Get all notes

GET /api/v1/note/{notableType}/{notableUuid}

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].

  • 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.

  • 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'.

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]

      Additional properties are allowed.

GET /api/v1/note/{notableType}/{notableUuid}
curl \
 -X GET https://api.plannrcrm.com/api/v1/note/notableType/notableUuid \
 -H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 -H "Content-Type: application/json" \
 -H "Accept: application/json"
Response examples (200)
{
  "data": [
    {
      "tags": [
        {
          "name": "Mortgage",
          "slug": "mortgage",
          "uuid": "558317c5-8f41-4ecd-815e-27e10054484a",
          "colour": "#ef4582",
          "created_at": "2024-11-20T13:24:02+00:00",
          "updated_at": "2024-11-20T13:24:02+00:00"
        }
      ],
      "type": "meeting",
      "uuid": "5e8d50bf-b540-4dc1-921e-3742c31c94a6",
      "edited": true,
      "account": {
        "firm": "App\\Http\\Resources\\FirmResource",
        "name": "Gareth Thompson",
        "role": "client",
        "tags": "App\\Http\\Resources\\TagResource",
        "type": "client",
        "uuid": "695ae1bb-ec4e-4189-8840-6cafa35e4b96",
        "email": "gareth@codepotato.co.uk",
        "groups": "App\\Http\\Resources\\GroupResource",
        "owners": "App\\Http\\Resources\\AccountResource",
        "last_name": "Thompson",
        "created_at": "2024-11-20T13:24:02+00:00",
        "first_name": "Gareth",
        "updated_at": "2024-11-20T13:24:02+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": "2024-11-20T13:24:02+00:00",
        "has_joint_account": true,
        "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
        "first_contact_date": "2024-11-20T13:24:02+00:00",
        "external_references": "App\\Http\\Resources\\ExternalReferenceResource",
        "assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
        "previous_review_date": "2024-11-20T13:24:02+00:00",
        "primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
        "assigned_administrator": "App\\Http\\Resources\\AccountResource",
        "anniversary_review_date": "2024-11-20T13:24:02+00:00"
      },
      "notable": {
        "firm": "App\\Http\\Resources\\FirmResource",
        "name": "Gareth Thompson",
        "role": "client",
        "tags": "App\\Http\\Resources\\TagResource",
        "type": "client",
        "uuid": "3b351c44-2e07-46d6-bbfd-62d803bcd757",
        "email": "gareth@codepotato.co.uk",
        "groups": "App\\Http\\Resources\\GroupResource",
        "owners": "App\\Http\\Resources\\AccountResource",
        "last_name": "Thompson",
        "created_at": "2024-11-20T13:24:02+00:00",
        "first_name": "Gareth",
        "updated_at": "2024-11-20T13:24:02+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": "2024-11-20T13:24:02+00:00",
        "has_joint_account": true,
        "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
        "first_contact_date": "2024-11-20T13:24:02+00:00",
        "external_references": "App\\Http\\Resources\\ExternalReferenceResource",
        "assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
        "previous_review_date": "2024-11-20T13:24:02+00:00",
        "primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
        "assigned_administrator": "App\\Http\\Resources\\AccountResource",
        "anniversary_review_date": "2024-11-20T13:24:02+00:00"
      },
      "contents": "Great work",
      "created_at": "2024-11-20T13:24:02+00:00",
      "updated_at": "2024-11-20T13:24:02+00:00",
      "notable_type": "client",
      "mentioned_accounts": [
        {
          "item": "Gareth Thompson",
          "contents": "<span data-type=\"mention\" data-account-uuid=\"f4e4e9e6-f89c-4b57-8b07-ca78a3a14fd0\">@Gareth Thompson</span>"
        }
      ]
    }
  ]
}