Get a message

GET /api/v1/conversation/{conversation_uuid}/messages/{uuid}

Path parameters

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
    • uuid string

      The UUID of the resource.

    • The timestamp of when the resource was created.

    • The timestamp of when the resource was updated.

    • The timestamp of when the resource was deleted.

    • contents string

      The message contents

    • edited boolean

      Whether the message has been edited or not

    • files array[object]

      Message file attachments

    • author object

      Message author

    • user object

      Message user

    • reactions array[object]

      Array of reactions to the message

GET /api/v1/conversation/{conversation_uuid}/messages/{uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/conversation/conversation_uuid/messages/uuid' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json"
Response examples (200)
{
  "user": {
    "name": "Gareth Thompson",
    "type": "standard",
    "uuid": "69328ac1-45a3-4fe1-9e5e-fa724ef48f7c",
    "email": "gareth@codepotato.co.uk",
    "last_name": "Thompson",
    "photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
    "created_at": "2025-06-17T14:20:19+01:00",
    "first_name": "Gareth",
    "updated_at": "2025-06-17T14:20:19+01:00",
    "otp_pending": false,
    "current_login": "App\\Http\\Resources\\LoginResource",
    "current_account": "App\\Http\\Resources\\AccountResource",
    "two_factor_type": "sms",
    "otp_confirmed_at": "2025-06-17T14:20:19+01:00",
    "two_factor_mobile": true,
    "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
    "session_expires_at": "2025-06-17T14:20:19+01:00",
    "two_factor_enabled": true,
    "should_auto_save_notes": true,
    "sms_two_factor_enabled": true,
    "two_factor_mobile_meta": {
      "country": "GB",
      "formatted": "0333 090 3630"
    }
  },
  "uuid": "806f6cac-a80e-4697-b869-2ccee710452f",
  "files": [
    {
      "firm": "App\\Http\\Resources\\FirmResource",
      "name": "Welcome to Plannr",
      "path": "Gareth Thompson/Subfolder/Welcome to Plannr.pdf",
      "size": "21691783",
      "tags": "App\\Http\\Resources\\TagResource",
      "type": "type",
      "uuid": "f28d52e0-dbc8-406d-9360-eb6532d84ad2",
      "folder": "App\\Http\\Resources\\FolderResource",
      "status": "uploaded",
      "account": "App\\Http\\Resources\\MinimalAccountResource",
      "filename": "Welcome to Plannr.pdf",
      "progress": "100",
      "extension": "pdf",
      "navigator": {
        "model_type": "account",
        "model_uuid": "12a28886-55d9-4a2f-8f88-c8d4c2834a8b"
      },
      "created_at": "2025-06-17T14:20:19+01:00",
      "updated_at": "2025-06-17T14:20:19+01:00",
      "folder_name": "folder 2",
      "uploaded_at": "2025-06-17T14:20:19+01:00",
      "documentable": "Object",
      "download_url": "https://plannr.valet/file/76a74ece-5305-47ce-98fb-63a80b9acba2/download",
      "last_modified": "2025-06-17T14:20:19+01:00",
      "documentable_type": "account",
      "original_created_at": "2025-06-17T14:20:19+01:00"
    }
  ],
  "author": {
    "firm": "App\\Http\\Resources\\FirmResource",
    "name": "Gareth Thompson",
    "role": "client",
    "tags": "App\\Http\\Resources\\TagResource",
    "type": "client",
    "uuid": "8d336d3b-84ab-4ac3-a13a-84842f6d6c38",
    "email": "gareth@codepotato.co.uk",
    "groups": "App\\Http\\Resources\\GroupResource",
    "owners": "App\\Http\\Resources\\AccountResource",
    "last_name": "Thompson",
    "created_at": "2025-06-17T14:20:19+01:00",
    "first_name": "Gareth",
    "updated_at": "2025-06-17T14:20:19+01:00",
    "with_login": true,
    "inactive_at": "2025-06-17",
    "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-17T14:20:19+01:00",
    "has_joint_account": true,
    "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
    "first_contact_date": "2025-06-17T14:20:19+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-17T14:20:19+01:00",
    "primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
    "assigned_administrator": "App\\Http\\Resources\\AccountResource",
    "anniversary_review_date": "2025-06-17T14:20:19+01:00"
  },
  "edited": true,
  "contents": "Welcome to Plannr!",
  "reactions": [
    {
      "uuid": "3ce041a9-7b53-4473-a94f-2ed28961abb6",
      "reaction": "like",
      "reactions": "App\\Http\\Resources\\ReactionResource",
      "created_at": "2025-06-17T14:20:19+01:00",
      "updated_at": "2025-06-17T14:20:19+01:00",
      "account_name": "Gareth Thompson",
      "account_uuid": "ce60b6c9-8a94-414b-a89b-af8169142f33"
    }
  ],
  "created_at": "2025-06-17T14:20:19+01:00",
  "deleted_at": "2025-06-17T14:20:19+01:00",
  "updated_at": "2025-06-17T14:20:19+01:00"
}