# Get a single Meeting activity

GET https://api.close.com/api/v1/activity/meeting/{id}/

Meeting transcripts can be accessed using this API but are not loaded by default. To load transcripts, use the `_fields` parameter with `transcripts` value.

The `transcripts` field is an array of objects for each Close Notetaker bot that joined the meeting. Typically, there will be only one transcript. Transcripts are ordered by the time bots joined the meeting.

Example transcripts in response:

```json
{ "transcripts": [ { "utterances": [ { "speaker_label": "John Lead", "speaker_side": "contact", "start": 0.1, "end": 1.2, "text": "Hey, what's up? How is it going?" }, { "speaker_label": "Jane User", "speaker_side": "close-user", "start": 1.3, "end": 2.4, "text": "Hey John, I'm doing great. How about you?" } ], "summary_text": "Summary text", "summary_html": "<p>Summary text</p>" } ] }
```

Reference: https://developer.close.com/api/resources/activities/meetings/get

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Close API
  version: 1.0.0
paths:
  /activity/meeting/{id}/:
    get:
      operationId: get
      summary: Get a single Meeting activity
      description: >-
        Meeting transcripts can be accessed using this API but are not loaded by
        default. To load transcripts, use the `_fields` parameter with
        `transcripts` value.


        The `transcripts` field is an array of objects for each Close Notetaker
        bot that joined the meeting. Typically, there will be only one
        transcript. Transcripts are ordered by the time bots joined the meeting.


        Example transcripts in response:


        ```json

        { "transcripts": [ { "utterances": [ { "speaker_label": "John Lead",
        "speaker_side": "contact", "start": 0.1, "end": 1.2, "text": "Hey,
        what's up? How is it going?" }, { "speaker_label": "Jane User",
        "speaker_side": "close-user", "start": 1.3, "end": 2.4, "text": "Hey
        John, I'm doing great. How about you?" } ], "summary_text": "Summary
        text", "summary_html": "<p>Summary text</p>" } ] }

        ```
      tags:
        - subpackage_activitiesMeetings
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: _fields
          in: query
          description: Comma-separated list of fields to include in the response.
          required: false
          schema:
            type: string
        - name: Authorization
          in: header
          description: Basic authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/activities.meetings_get_Response_200'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                description: Any type
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: Not found
          content:
            application/json:
              schema:
                description: Any type
servers:
  - url: https://api.close.com/api/v1
components:
  schemas:
    activities.meetings_get_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: activities.meetings_get_Response_200
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: basic
    OAuth2:
      type: http
      scheme: bearer

```