> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anycrm.anyreach.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a Meeting

> Fetch a single meeting with embedded account/deal/contact details.

Fetches a single meeting (`type='meeting'` is enforced — passing the id of a non-meeting activity 404s) with embedded account/deal/contact details. Same row shape as [List Meetings](/api-reference/activities/list-meetings).

### Auth

Requires a CRM read [scope](/authentication#scopes) and an active organization on the token. Any of `contacts:read`, `deals:read`, `companies:read`, or `activities:read` qualifies, as does any `*:manage` scope — manage implies read.

### Response

| Field              | Type                           | Description                                                                                                                                                        |
| ------------------ | ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `id`               | `string` (uuid)                | Primary key.                                                                                                                                                       |
| `type`             | `string`                       | Always `"meeting"` on this endpoint.                                                                                                                               |
| `subject`          | `string \| null`               | Meeting title.                                                                                                                                                     |
| `body`             | `string \| null`               | Free-text notes.                                                                                                                                                   |
| `due_at`           | `string \| null` (timestamptz) | Scheduled time.                                                                                                                                                    |
| `completed_at`     | `string \| null` (timestamptz) | When the meeting was marked done, if applicable.                                                                                                                   |
| `duration_minutes` | `integer \| null`              | Meeting length.                                                                                                                                                    |
| `metadata`         | `object \| null` (jsonb)       | Free-form. See the [List Meetings](/api-reference/activities/list-meetings) response for the full field breakdown of what manual vs. synced sources write into it. |
| `account_id`       | `string \| null` (uuid)        | Linked account.                                                                                                                                                    |
| `deal_id`          | `string \| null` (uuid)        | Linked deal.                                                                                                                                                       |
| `contact_id`       | `string \| null` (uuid)        | Linked contact.                                                                                                                                                    |
| `owner_id`         | `string \| null`               | Logto user sub of the owning rep.                                                                                                                                  |
| `source`           | `string`                       | `manual`, `import`, or a sync source (`calendar`, `gmail`, `outlook`, `slack`, `teams`).                                                                           |
| `direction`        | `string \| null`               | Not typically meaningful for meetings; carried over from the shared select.                                                                                        |
| `created_at`       | `string` (timestamptz)         | Row creation time.                                                                                                                                                 |
| `accounts`         | `object \| null`               | Embedded: `{ id, name, domain }`. `null` if `account_id` is unset.                                                                                                 |
| `deals`            | `object \| null`               | Embedded: `{ id, name, stage_id }`. `null` if `deal_id` is unset.                                                                                                  |
| `contacts`         | `object \| null`               | Embedded: `{ id, first_name, last_name, email }`. `null` if `contact_id` is unset.                                                                                 |

### Errors

| Status          | Cause                                                     |
| --------------- | --------------------------------------------------------- |
| `404 Not Found` | No meeting-type activity with this id exists in this org. |


## OpenAPI

````yaml GET /activities/meetings/{meeting_id}
openapi: 3.1.0
info:
  title: anycrm-api
  version: 0.0.1
servers: []
security: []
tags:
  - name: Customer Intelligence
    description: >-
      Company research and ICP-fit scoring — create a research run, track its
      progress, and read back scored companies as leads.
  - name: Outreach
    description: >-
      The cold-email management console — domains, mailboxes, and campaigns — as
      a thin control plane over the SalesForge stack.
  - name: AnyCard
    description: >-
      Authenticated CRUD for AnyCard, the org's digital business-card /
      lead-capture product.
  - name: AnyCard Events
    description: >-
      Event-attribution analytics for AnyCard — which captured leads converted,
      broken down by source, owner, and deal.
  - name: AnyCard Share Links
    description: >-
      Unauthenticated endpoints reached by anyone who scans a QR code or opens a
      shared AnyCard link.
  - name: AI
    description: >-
      A streaming (SSE) AI chat endpoint with account-commit actions it can take
      on the caller's behalf.
  - name: Analytics Assistant
    description: >-
      The natural-language analytics assistant — a guarded text-to-SQL loop
      (SSE) that answers ad-hoc questions over the org's CRM data as a
      least-privilege, read-only database role.
  - name: Account Readiness
    description: >-
      Account Readiness Profiles — AI-scored signals on whether an account is
      ready for outreach or expansion, computed via a Temporal workflow.
  - name: Integrations
    description: >-
      Pipedream Connect — issuing connect tokens and managing the org's
      connected third-party accounts.
  - name: Feedback
    description: >-
      User-submitted platform feedback (bug reports, feature requests) — global,
      not scoped to one organization.
  - name: Public Media
    description: >-
      Unauthenticated image reads for publicly-embeddable assets (card photos,
      inline email images) — allowlisted by key shape; everything else in the
      storage bucket stays private.
  - name: Service Health
    description: Service liveness.
paths:
  /activities/meetings/{meeting_id}:
    get:
      tags:
        - Activities
      summary: Get Meeting
      description: Fetch a single meeting with embedded account/deal/contact details.
      operationId: get_meeting_activities_meetings__meeting_id__get
      parameters:
        - name: meeting_id
          in: path
          required: true
          schema:
            type: string
            description: The meeting's id (a type='meeting' activity) to fetch.
            title: Meeting Id
          description: The meeting's id (a type='meeting' activity) to fetch.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Get Meeting Activities Meetings  Meeting Id  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````