---
title: "Get a meeting"
method: GET
path: "/v2/meetings/{meeting_id}"
tags: ["Meetings"]
---

# Get a meeting

`GET /v2/meetings/{meeting_id}`

Get a single meeting by ID.

This endpoint is in beta. We will aim to avoid breaking changes, but small updates may be made as we roll out to more users.

Required scopes: `meeting:read`, `record_permission:read`.

## Path parameters

- `meeting_id` string, uuid, required — A UUID which identifies the meeting.

## Response `200`

Success

- object — Success
  - `data` Meeting, required
    - `id` object, required
      - `workspace_id` string, uuid, required — The ID of the workspace the meeting belongs to.
      - `meeting_id` string, uuid, required — The ID of the Attio meeting.
    - `title` string, required — The title of the meeting.
    - `description` string, required — The description of the meeting.
    - `is_all_day` boolean, required — Whether or not the meeting is an all day event. All day events may span multiple days.
    - `start` union, required
      - object
        - `datetime` string, required — If a non-all day event, a datetime representing when the meeting starts. Datetimes are formatted as UTC if no timezone is available. If a timezone is available, the datetime will offset using the specified timezone.
        - `timezone` string, nullable, required — The IANA timezone in which the meeting starts, if available.
      - object
        - `date` string, required — If an all day event, a date representing when the meeting starts.
    - `end` union, required
      - object
        - `datetime` string, required — A datetime representing when the meeting ends. All day meetings will return a date whereas non-all day meetings will return a datetime. Datetimes do not include timezone information; please refer to `timezone` for timezone information. Following iCalendar RFC 5545, the `end_at` property is exclusive, meaning that the meeting ends before the specified time, not at it. For example, a one day meeting on June 3rd would have an `end_at` of June 4th, not June 3rd; a one hour meeting starting at 14:00 would have an `end_at` of 15:00, not 14:00.
        - `timezone` string, nullable, required — The IANA timezone in which the meeting ends, if available.
      - object
        - `date` string, required — If an all day event, a date representing when the meeting ends.
    - `participants` object[], required
      - `status` 'accepted' | 'tentative' | 'declined' | 'pending', required — The status of the individual meeting participant.
      - `is_organizer` boolean, required — Whether or not the participant is the organizer of the meeting.
      - `email_address` string, nullable, required — The normalized email address of the meeting participant.
      - `name` string, nullable, required — The participant's name. This is only set when the name was explicitly provided when the participant was created. It is null for any participant identified by an email address — including workspace members and person records — whose display names are not resolved into this field.
    - `linked_records` object[], required — A list of records that are linked to the meeting. Participants with matching person records are automatically linked to the meeting but other records may also be linked explicitly.
      - `object_slug` string, required — The slug of the object the meeting linked record belongs to.
      - `object_id` string, uuid, required — The ID of the object the meeting linked record belongs to.
      - `record_id` string, uuid, required — The ID of the meeting linked record.
    - `created_at` string, required — Timestamp representing when the meeting was created.
    - `created_by_actor` object, required — The actor that created this meeting.
      - `id` string, nullable — An ID to identify the actor.
      - `type` 'api-token' | 'workspace-member' | 'system' | 'app', nullable — The type of actor. [Read more information on actor types here](/docs/actors).

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/attio/apis/attio-api.md) · [All operations](https://skmtc.net/attio/apis/attio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/attio/attio-api/versions/40a8e41d06a2/schema)
