Create a conversation.

POST /api/v1/conversation

Headers

  • X-PLANNR-ACCOUNT-UUID string
application/json

Body Required

  • name string Required

    Conversation title

  • case string

    Case uuid to assign this conversation too

  • participants array[string]

    Account uuids belonging to the firm

Responses

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

      The UUID of the resource.

    • created_at string

      The timestamp of when the resource was created.

    • updated_at string

      The timestamp of when the resource was updated.

    • name string

      Conversation title

    • slug string

      Conversation title as a slug

    • belongs_to_case boolean

      Whether or not the conversation belongs to a case.

    • case object

      Case the conversation belongs to (if included)

      Hide case attributes Show case attributes object
      • uuid string
      • created_at string
      • updated_at string
      • name string
      • slug string
      • status string
      • type string
      • review_at string
      • assigned_to_uuids array[string]
      • group_uuids array[string]
      • completed_at string
      • value object
        Hide value attributes Show value attributes object
        • amount object
          Hide amount attributes Show amount attributes object
          • example string
          • description string
        • formatted object
          Hide formatted attributes Show formatted attributes object
          • example string
          • description string
        • currency object
          Hide currency attributes Show currency attributes object
          • example string
          • description string
      • status_position integer
      • participants_count integer
      • participants string
      • task_board_uuid string
      • plans string
      • custom_fields string
    • participants_count integer

      Number of participants in conversation (if included)

    • participants array[object]

      Participants in this conversation (if included)

      Hide participants attributes Show participants attributes object
      • uuid string
      • created_at string
      • updated_at string
      • type string
      • role string
      • first_name string
      • last_name string
      • name string
      • email string
      • firm string
      • primary_phone_number string
      • primary_email string
      • current_time_entry string
      • assigned_adviser string
      • assigned_administrator string
      • assigned_paraplanner string
      • introduced_by string
      • groups string
      • tags string
      • owners string
      • first_contact_date string
      • next_review_date string
      • previous_review_date string
      • anniversary_review_date string
      • with_login boolean
      • has_joint_account boolean
      • can_be_deleted string
      • joint_account_circle string
      • ownership_percentage integer
      • inactive_at string
      • custom_fields string
      • external_references string
    • latest_message object

      The latest message of the conversation (if included)

      Hide latest_message attributes Show latest_message attributes object
      • uuid string
      • created_at string
      • updated_at string
      • deleted_at string
      • contents string
      • edited boolean
      • files string
      • author string
      • user string
      • reactions string
    • messages_count integer

      Number of messages in the conversation (if included)

    • files_count integer

      Number of files in the conversation (if included)

    • tags array[object]

      Conversation tags (if included)

      Hide tags attributes Show tags attributes object
      • uuid string
      • created_at string
      • updated_at string
      • name string
      • slug string
      • colour string
    • pinned boolean

      Whether the conversation has been pinned to the top (if participants included)

    • is_admin boolean

      If the authenticated account is an admin of the conversation (if participants included)

POST /api/v1/conversation
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/conversation' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
 --data '{"name":"Annual Review","case":"df180ca0-3992-4656-97cb-79771c3c6796","participants":["c4875151-80e0-438d-acbc-e8282372f731","1172a34c-0c3a-46bb-abac-f4af28cb4b50"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "name": "Annual Review",
  "case": "df180ca0-3992-4656-97cb-79771c3c6796",
  "participants": [
    "c4875151-80e0-438d-acbc-e8282372f731",
    "1172a34c-0c3a-46bb-abac-f4af28cb4b50"
  ]
}
Response examples (200)
{
  "case": {
    "name": "finance",
    "slug": "finance",
    "type": "App\\Http\\Resources\\CasesTypeResource",
    "uuid": "9e619c3f-5da2-451e-92d5-faecd5860d56",
    "plans": "App\\Http\\Resources\\Plans\\PlanResource",
    "value": {
      "amount": {
        "example": "4000",
        "description": "Money amount at their lowest denominator (for example: pennies)"
      },
      "currency": {
        "example": "GBP",
        "description": "Currency of the money"
      },
      "formatted": {
        "example": "£40.00",
        "description": "Money amount formatted with currency"
      }
    },
    "status": "App\\Http\\Resources\\CasesStatusResource",
    "review_at": "2025-06-26T11:37:05+01:00",
    "created_at": "2025-06-26T11:37:05+01:00",
    "updated_at": "2025-06-26T11:37:05+01:00",
    "group_uuids": [
      "f6d994d9-72c7-4924-8c24-789848da3d61"
    ],
    "completed_at": "2025-06-26T11:37:05+01:00",
    "participants": "App\\Http\\Resources\\AccountResource",
    "custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
    "status_position": 4,
    "task_board_uuid": "259e03dd-9fe7-4ec2-a5ab-339541b71f82",
    "assigned_to_uuids": [
      "4c9cbed1-e670-4c92-a35c-fb6f4b6d36bd"
    ],
    "participants_count": 4
  },
  "name": "Welcome to Plannr",
  "slug": "welcome-to-plannr",
  "tags": [
    {
      "name": "Mortgage",
      "slug": "mortgage",
      "uuid": "d8ca6d08-8644-4eef-970a-277500ffa597",
      "colour": "#ef4582",
      "created_at": "2025-06-26T11:37:05+01:00",
      "updated_at": "2025-06-26T11:37:05+01:00"
    }
  ],
  "uuid": "95700231-029b-492f-b0c7-3a6e6a31c139",
  "pinned": true,
  "is_admin": false,
  "created_at": "2025-06-26T11:37:05+01:00",
  "updated_at": "2025-06-26T11:37:05+01:00",
  "files_count": 2,
  "participants": [
    {
      "firm": "App\\Http\\Resources\\FirmResource",
      "name": "Gareth Thompson",
      "role": "client",
      "tags": "App\\Http\\Resources\\TagResource",
      "type": "client",
      "uuid": "b740be06-4874-4f35-af95-8d47a2cc050d",
      "email": "gareth@codepotato.co.uk",
      "groups": "App\\Http\\Resources\\GroupResource",
      "owners": "App\\Http\\Resources\\AccountResource",
      "last_name": "Thompson",
      "created_at": "2025-06-26T11:37:05+01:00",
      "first_name": "Gareth",
      "updated_at": "2025-06-26T11:37:05+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:05+01:00",
      "has_joint_account": true,
      "current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
      "first_contact_date": "2025-06-26T11:37:05+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:05+01:00",
      "primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
      "assigned_administrator": "App\\Http\\Resources\\AccountResource",
      "anniversary_review_date": "2025-06-26T11:37:05+01:00"
    }
  ],
  "latest_message": {
    "user": "App\\Http\\Resources\\UserResource",
    "uuid": "82ead2cb-5503-4694-b1fe-a18893e64f28",
    "files": "App\\Http\\Resources\\FileResource",
    "author": "App\\Http\\Resources\\AccountResource",
    "edited": true,
    "contents": "Welcome to Plannr!",
    "reactions": "App\\Http\\Resources\\ReactionResource",
    "created_at": "2025-06-26T11:37:05+01:00",
    "deleted_at": "2025-06-26T11:37:05+01:00",
    "updated_at": "2025-06-26T11:37:05+01:00"
  },
  "messages_count": 30,
  "belongs_to_case": true,
  "participants_count": 3
}