# Create or update third-party Meeting integration

POST https://api.close.com/api/v1/activity/meeting/{id}/integration/
Content-Type: application/json

Please note that only OAuth apps can perform this operation. Using API key will result in an error. See [Authentication with OAuth](/topics/authentication-oauth2/) for more information.

Third party integrations are presented as tabs titled with OAuth app name in the activity feed. When invoked for the first time with a given OAuth app a new integration is created, subsequent calls with the same OAuth app will update an existing integration. Submitting an empty JSON body does nothing.

Reference: https://developer.close.com/api/resources/activities/meetings/create-integration

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Close API
  version: 1.0.0
paths:
  /activity/meeting/{id}/integration/:
    post:
      operationId: create-integration
      summary: Create or update third-party Meeting integration
      description: >-
        Please note that only OAuth apps can perform this operation. Using API
        key will result in an error. See [Authentication with
        OAuth](/topics/authentication-oauth2/) for more information.


        Third party integrations are presented as tabs titled with OAuth app
        name in the activity feed. When invoked for the first time with a given
        OAuth app a new integration is created, subsequent calls with the same
        OAuth app will update an existing integration. Submitting an empty JSON
        body does nothing.
      tags:
        - subpackage_activitiesMeetings
      parameters:
        - name: id
          in: path
          required: true
          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_createIntegration_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
      requestBody:
        content:
          application/json:
            schema:
              description: Any type
servers:
  - url: https://api.close.com/api/v1
components:
  schemas:
    activities.meetings_createIntegration_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: activities.meetings_createIntegration_Response_200
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: basic
    OAuth2:
      type: http
      scheme: bearer

```