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

# Add Call



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#GONG_ADD_CALL
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#GONG_ADD_CALL:
    post:
      summary: Add Call
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: GONG_ADD_CALL
                parameters:
                  type: object
                  properties:
                    actualStart:
                      type: string
                      description: >-
                        Call Start Date : Accepts ISO 8601 date format.
                        (example: "2022-08-01T07:00:00.000Z")
                    clientUniqueId:
                      type: string
                      description: >-
                        Client Unique ID : A call's unique identifier in the PBX
                        or the recording system. Gong uses this identifier to
                        prevent repeated attempts to upload the same recording.
                        (example: "123abc")
                    direction:
                      type: string
                      description: Direction
                      enum:
                        - Conference
                        - Inbound
                        - Outbound
                        - Unknown
                    parties:
                      type: string
                      description: >-
                        Parties : An array list of the call's participants as
                        objects. A party must be provided for the Primary User.
                        See the docs
                        (https://app.gong.io/settings/api/documentation#post-/v2/callsr)
                        to view the complete parties object reference. (example:
                        "[
                            {
                              "emailAddress": "test@test.com",
                              "name": "Test User",
                              "userId": "7387268041252473322"
                            }
                          ]")
                    primaryUser:
                      type: string
                      description: >-
                        Primary User : The Gong internal user ID of the team
                        member who hosted the call. (example:
                        "7347263041252417409")
                    title:
                      type: string
                      description: >-
                        Title : The title of the call. This title is available
                        in the Gong system for indexing and search. (example:
                        "Call with Sales")
                    downloadMediaUrl:
                      type: string
                      description: >-
                        Download Media URL : The URL from which Gong can
                        download the media file. Up to 1.5 GB.
                    purpose:
                      type: string
                      description: >-
                        Purpose : The purpose of the call. Limit of 255
                        characters.
                    duration:
                      type: string
                      description: >-
                        Duration : The call duration in seconds. (example:
                        "3600.0")
                  required:
                    - actualStart
                    - clientUniqueId
                    - direction
                    - parties
                    - primaryUser
                  x-integration: gong
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````