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

# Gong Add Meeting: Inputs, Cost & CLI Example

> Create a New Gong Meeting (/v2/meetings). Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=gong_add_meeting:{"startTime":"{{startTime}}","endTime":"{{endTime}}","invitees":"{{invitees}}","organizerEmail":"{{organizerEmail}}"}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                     | Type     | Required | Default | Description                                                                                                                         |
| ------------------------ | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| `payload.startTime`      | `string` | Yes      |         | The meeting start time in ISO-8601 format (e.g., '2018-02-18T02:30:00-07:00' or '2018-02-18T08:00:00Z', where Z stands for UTC).    |
| `payload.endTime`        | `string` | Yes      |         | The meeting end time in ISO-8601 format (e.g., '2018-02-18T02:30:00-07:00' or '2018-02-18T08:00:00Z', where Z stands for UTC).      |
| `payload.title`          | `string` | No       |         | Title of the event.                                                                                                                 |
| `payload.invitees`       | `array`  | Yes      |         | A list of email addresses of invitees to the event (not including the organizer).                                                   |
| `payload.externalId`     | `string` | No       |         | The ID as it is formed on the external system.                                                                                      |
| `payload.provider`       | `string` | No       |         | The web conferencing provider to use for this meeting (e.g. 'zoom'). When not specified, the user's default provider is used.       |
| `payload.organizerEmail` | `string` | Yes      |         | The email address of the user creating the meeting, the Gong consent page link will be used according to the settings of this user. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "New meeting metadata",
    "properties": {
      "startTime": {
        "type": "string",
        "description": "The meeting start time in ISO-8601 format (e.g., '2018-02-18T02:30:00-07:00' or '2018-02-18T08:00:00Z', where Z stands for UTC)."
      },
      "endTime": {
        "type": "string",
        "description": "The meeting end time in ISO-8601 format (e.g., '2018-02-18T02:30:00-07:00' or '2018-02-18T08:00:00Z', where Z stands for UTC)."
      },
      "title": {
        "type": "string",
        "description": "Title of the event."
      },
      "invitees": {
        "type": "array",
        "description": "A list of email addresses of invitees to the event (not including the organizer).",
        "items": {
          "type": "object",
          "description": "Attendees the requesting party should add to the invitation, this should support adding email addresses such as coordinator@gong.io for Gong to schedule the recording of the meeting.",
          "properties": {
            "email": {
              "type": "string",
              "description": "The unique meeting to identify the meeting."
            },
            "displayName": {
              "type": "string",
              "description": "The name of the person."
            },
            "firstName": {
              "type": "string",
              "description": "The first name of the person, if available."
            },
            "lastName": {
              "type": "string",
              "description": "The last name of the person, if available."
            }
          },
          "additionalProperties": false
        }
      },
      "externalId": {
        "type": "string",
        "description": "The ID as it is formed on the external system."
      },
      "provider": {
        "type": "string",
        "description": "The web conferencing provider to use for this meeting (e.g. 'zoom'). When not specified, the user's default provider is used."
      },
      "organizerEmail": {
        "type": "string",
        "description": "The email address of the user creating the meeting, the Gong consent page link will be used according to the settings of this user."
      }
    },
    "required": [
      "endTime",
      "invitees",
      "organizerEmail",
      "startTime"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "requestId": {
            "type": "string",
            "description": "A Gong request reference Id, generated for this request. Can be used for troubleshooting purposes."
          },
          "meetingId": {
            "type": "string",
            "description": "Gong's unique identifier for the meeting (up to 20 digits)."
          },
          "meetingUrl": {
            "type": "string",
            "description": "The Gong URL of the meeting, should be used to enter the meeting."
          },
          "additionalInvitees": {
            "type": "array",
            "description": "Attendees the requesting party should add to the invitation, this should support adding email addresses such as coordinator@gong.io for Gong to schedule the recording of the meeting.",
            "items": {
              "type": "object",
              "description": "Attendees the requesting party should add to the invitation, this should support adding email addresses such as coordinator@gong.io for Gong to schedule the recording of the meeting.",
              "properties": {
                "email": {
                  "type": "string",
                  "description": "The unique meeting to identify the meeting."
                },
                "displayName": {
                  "type": "string",
                  "description": "The name of the person."
                },
                "firstName": {
                  "type": "string",
                  "description": "The first name of the person, if available."
                },
                "lastName": {
                  "type": "string",
                  "description": "The last name of the person, if available."
                }
              },
              "additionalProperties": false
            }
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute gong_add_meeting --payload '{
  "startTime": "string",
  "endTime": "string",
  "invitees": "array",
  "organizerEmail": "string"
}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
