openapi: 3.2.0 info: description: Close CRM REST API title: Close Activities.meetings API version: 1.0.0 servers: - url: https://api.close.com/api/v1 security: - ApiKeyAuth: [] - OAuth2: [] tags: - name: activities.meetings externalDocs: url: https://developer.close.com/api/resources/activities/meetings paths: /activity/meeting/: get: operationId: activities.meetings_list tags: - activities.meetings summary: List or filter all Meeting activities parameters: - $ref: '#/components/parameters/LimitParam' - $ref: '#/components/parameters/SkipParam' - $ref: '#/components/parameters/ActivityFilters_IdInParam' - $ref: '#/components/parameters/ActivityFilters_LeadIdParam' - $ref: '#/components/parameters/ActivityFilters_ContactIdParam' - $ref: '#/components/parameters/ActivityFilters_UserIdParam' - $ref: '#/components/parameters/ActivityFilters_OrganizationIdParam' - $ref: '#/components/parameters/ActivityFilters_TypeParam' - $ref: '#/components/parameters/ActivityFilters_DateCreatedGteParam' - $ref: '#/components/parameters/ActivityFilters_DateCreatedLteParam' - $ref: '#/components/parameters/ActivityFilters_DateCreatedGtParam' - $ref: '#/components/parameters/ActivityFilters_DateCreatedLtParam' - $ref: '#/components/parameters/ActivityFilters_ActivityAtGteParam' - $ref: '#/components/parameters/ActivityFilters_ActivityAtLteParam' - $ref: '#/components/parameters/ActivityFilters_ActivityAtGtParam' - $ref: '#/components/parameters/ActivityFilters_ActivityAtLtParam' - $ref: '#/components/parameters/FieldsParam' responses: '200': content: application/json: example: data: - _type: Meeting activity_at: '2019-10-11T16:30:00+00:00' actual_duration: null attached_call_ids: [] attendees: - contact_id: cont_V3RuqD9VJKJWOtPsoH7EMy3MnKoFED2Ulgd4g87Ayqc email: bruce@wayneenterprises.com is_organizer: false name: Bruce Wayne status: noreply user_id: null - contact_id: null email: jane@example.com is_organizer: true name: null status: 'yes' user_id: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk calendar_event_link: https://www.google.com/calendar/event?eid=NzlrNGRoMmk5bm9jZDEwOGtjMmY3Y2RzODggamFuZUBleGFtcGxlLmNvbQ calendar_event_uids: - 79k4dh2i9nocd108kc2f7cds88 conference_links: - type: ZOOM url: https://zoom.us/j/zoommeeting connected_account_id: emailacct_OoSyqxjm1HbuxcRsOyrm2SwR1uOTBdHKPdhAaf9mhUp contact_id: null conversation_type_id: null conversation_type_reason: null created_by: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk created_by_name: Jane User date_created: '2019-10-11T16:30:00+00:00' date_updated: '2019-10-11T16:18:17.942000+00:00' duration: 3600 ends_at: '2019-10-11T17:30:00+00:00' id: acti_qwA2IPmjYyMQQ2UWuNxBOtc2CbZtRUOb5JkS1i3Qo1b integrations: [] is_recurring: false lead_id: lead_Qq33JAqr6zrgqtJGkKv7XQxTnQxpTEJA7Mfcx98ZrWe location: https://zoom.us/j/zoommeeting note: '────────── Jane User is inviting you to a scheduled Zoom meeting to find out if you''re really Batman. Join Zoom Meeting https://zoom.us/j/zoommeeting ──────────' notetaker_id: null organization_id: orga_RbREgmiiwcr1w2b4cOnCMQaQPSIFxMqAD2Dh243uxcH outcome_autofill_confidence: null outcome_autofill_reasoning: null outcome_id: null outcome_reason: null playbook_id: null playbook_reason: null provider_calendar_event_id: 79k4dh2i9nocd108kc2f7cds88 provider_calendar_ids: - primary provider_calendar_type: google source: calendar starts_at: '2019-10-11T16:30:00+00:00' status: upcoming summary: null title: Bruce Wayne Interview updated_by: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk updated_by_name: Jane User user_id: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk user_name: Jane User user_note: null user_note_date_updated: null user_note_html: null user_note_mentions: [] users: - user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk has_more: false schema: type: object properties: data: items: $ref: '#/components/schemas/MeetingActivity' type: array has_more: type: boolean required: - data - has_more description: Successful response '400': description: Bad request '401': description: Unauthorized '404': description: Not found /activity/meeting/{id}/: get: operationId: activities.meetings_get tags: - activities.meetings 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": "

Summary text

" } ] } ```' parameters: - in: path name: id required: true schema: type: string - $ref: '#/components/parameters/FieldsParam' responses: '200': content: application/json: example: _type: Meeting activity_at: '2019-10-11T16:30:00+00:00' actual_duration: null attached_call_ids: [] attendees: - contact_id: cont_V3RuqD9VJKJWOtPsoH7EMy3MnKoFED2Ulgd4g87Ayqc email: bruce@wayneenterprises.com is_organizer: false name: null status: noreply user_id: null - contact_id: null email: jane@example.com is_organizer: true name: null status: 'yes' user_id: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk calendar_event_link: https://www.google.com/calendar/event?eid=NzlrNGRoMmk5bm9jZDEwOGtjMmY3Y2RzODggamFuZUBleGFtcGxlLmNvbQ calendar_event_uids: - 79k4dh2i9nocd108kc2f7cds88 conference_links: - type: ZOOM url: https://zoom.us/j/zoommeeting connected_account_id: emailacct_OoSyqxjm1HbuxcRsOyrm2SwR1uOTBdHKPdhAaf9mhUp contact_id: null conversation_type_id: null conversation_type_reason: null created_by: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk created_by_name: Jane User date_created: '2019-10-11T16:30:00+00:00' date_updated: '2019-10-11T16:30:00.368000+00:00' duration: 3600 ends_at: '2019-10-11T17:30:00+00:00' id: acti_qwA2IPmjYyMQQ2UWuNxBOtc2CbZtRUOb5JkS1i3Qo1b integrations: [] is_recurring: false lead_id: lead_Qq33JAqr6zrgqtJGkKv7XQxTnQxpTEJA7Mfcx98ZrWe location: https://zoom.us/j/zoommeeting note: '────────── Jane User is inviting you to a scheduled Zoom meeting to find out if you''re really Batman. Join Zoom Meeting https://zoom.us/j/zoommeeting ──────────' notetaker_id: null organization_id: orga_RbREgmiiwcr1w2b4cOnCMQaQPSIFxMqAD2Dh243uxcH outcome_autofill_confidence: null outcome_autofill_reasoning: null outcome_id: null outcome_reason: null playbook_id: null playbook_reason: null provider_calendar_event_id: 79k4dh2i9nocd108kc2f7cds88 provider_calendar_ids: - primary provider_calendar_type: google source: calendar starts_at: '2019-10-11T16:30:00+00:00' status: in-progress summary: null title: Bruce Wayne Interview updated_by: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk updated_by_name: Jane User user_id: user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk user_name: Jane User user_note: null user_note_date_updated: null user_note_html: null user_note_mentions: [] users: - user_Ova4RGFG7pztSeJiiMFdN7O2MFl71nD0uGO3bIOo4Wk schema: $ref: '#/components/schemas/MeetingActivity' description: Successful response '400': description: Bad request '401': description: Unauthorized '404': description: Not found put: operationId: activities.meetings_update tags: - activities.meetings summary: Update a Meeting activity description: Most commonly this can be used to update a meetings's `user_note_html` or `outcome_id`. parameters: - in: path name: id required: true schema: type: string requestBody: content: application/json: example: outcome_id: outcome_031uY9IKV1JxfNKM9n2qCw user_note_html: