{
  "info": {
    "name": "Gong — mcp.ai",
    "description": "REST API for the Gong MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/gong",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gong_add_call_media_v2_calls_id_media",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/call/media/v2/calls/id/media",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "call",
            "media",
            "v2",
            "calls",
            "id",
            "media"
          ]
        },
        "description": "Adds a call media, recorded by a telephony system (pbx) or other media recording facility. gong accepts call recordings in various audio and video file formats, including wav, mp3, mp4, mkv and flac. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"mediaFile\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_add_new_call_v2_calls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/new/call/v2/calls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "new",
            "call",
            "v2",
            "calls"
          ]
        },
        "description": "When using this endpoint, either provide a downloadmediaurl or use the returned callid in a follow-up request to /v2/calls/{id}/media to upload the media file. when accessed through a bearer token aut",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"context\": \"\",\n  \"parties\": \"\",\n  \"purpose\": \"\",\n  \"duration\": 0,\n  \"direction\": \"\",\n  \"customData\": \"\",\n  \"meetingUrl\": \"\",\n  \"actualStart\": \"\",\n  \"disposition\": \"\",\n  \"primaryUser\": \"\",\n  \"workspaceId\": \"\",\n  \"languageCode\": \"\",\n  \"scheduledEnd\": \"\",\n  \"clientUniqueId\": \"\",\n  \"scheduledStart\": \"\",\n  \"callProviderCode\": \"\",\n  \"downloadMediaUrl\": \"\",\n  \"speakersTimeline__precise\": false,\n  \"speakersTimeline__speechSegments\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_aggregate_activity_by_period_via_api",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/aggregate/activity/by/period/via/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "aggregate",
            "activity",
            "by",
            "period",
            "via",
            "api"
          ]
        },
        "description": "Lists the aggregated activity of multiple users within the gong system for each time period within the defined date range. this endpoint returns multiple records, one for each user. for each user ther",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__toDate\": \"\",\n  \"filter__userIds\": \"\",\n  \"filter__fromDate\": \"\",\n  \"aggregationPeriod\": \"\",\n  \"filter__createdToDateTime\": \"\",\n  \"filter__createdFromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_aggregate_user_activity_statistics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/aggregate/user/activity/statistics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "aggregate",
            "user",
            "activity",
            "statistics"
          ]
        },
        "description": "Lists the activity of multiple users within the gong system during a defined period. given the period, this endpoint returns multiple records, one for each user, with an applicable activity during the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__toDate\": \"\",\n  \"filter__userIds\": \"\",\n  \"filter__fromDate\": \"\",\n  \"filter__createdToDateTime\": \"\",\n  \"filter__createdFromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_assign_prospects_to_flow",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/assign/prospects/to/flow",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "assign",
            "prospects",
            "to",
            "flow"
          ]
        },
        "description": "Use this endpoint to assign a number of prospects to a flow. prospects can be contacts or leads in your crm. generate a list of comma separated crm ids of the prospects you want to add to a flow. the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"flowId\": \"\",\n  \"crmProspectsIds\": \"\",\n  \"flowInstanceOwnerEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_create_a_new_gong_meeting_v2_meetings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/new/gong/meeting/v2/meetings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "new",
            "gong",
            "meeting",
            "v2",
            "meetings"
          ]
        },
        "description": "When accessed through a bearer token authorization method, this endpoint requires the scope 'api:meetings:user:create'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"endTime\": \"\",\n  \"invitees\": \"\",\n  \"startTime\": \"\",\n  \"externalId\": \"\",\n  \"organizerEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_create_activity_scorecards_report",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/activity/scorecards/report",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "activity",
            "scorecards",
            "report"
          ]
        },
        "description": "Retrieve all the answers for the scorecards that were reviewed during a specified date range, for calls that took place during a specified date range, for specific scorecards or for specific reviewed ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__callToDate\": \"\",\n  \"filter__callFromDate\": \"\",\n  \"filter__reviewMethod\": \"\",\n  \"filter__reviewToDate\": \"\",\n  \"filter__scorecardIds\": \"\",\n  \"filter__reviewFromDate\": \"\",\n  \"filter__reviewedUserIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_create_permission_profile_v2_permission_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/permission/profile/v2/permission/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "permission",
            "profile",
            "v2",
            "permission",
            "profile"
          ]
        },
        "description": "Create a permission profile in a given workspace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"deals\": false,\n  \"usage\": false,\n  \"market\": false,\n  \"account\": false,\n  \"library\": false,\n  \"activity\": false,\n  \"coaching\": false,\n  \"forecast\": false,\n  \"teamStats\": false,\n  \"trimCalls\": false,\n  \"scoreCalls\": false,\n  \"deleteCalls\": false,\n  \"description\": \"\",\n  \"initiatives\": false,\n  \"workspaceId\": \"\",\n  \"deleteEmails\": false,\n  \"privateCalls\": false,\n  \"crmDataImport\": false,\n  \"listenInCalls\": false,\n  \"overrideScore\": false,\n  \"callsAndSearch\": false,\n  \"forecastManage\": false,\n  \"manageScorecards\": false,\n  \"downloadCallMedia\": false,\n  \"dealsInlineEditing\": false,\n  \"crmDataInlineEditing\": false,\n  \"viewRevenueAnalytics\": false,\n  \"manageRevenueAnalytics\": false,\n  \"shareCallsWithCustomers\": false,\n  \"callsAccess__teamLeadIds\": \"\",\n  \"dealsAccess__teamLeadIds\": \"\",\n  \"usageAccess__teamLeadIds\": \"\",\n  \"viewEngageAnalyticsFlows\": false,\n  \"emailsAccess__teamLeadIds\": \"\",\n  \"coachingAccess__teamLeadIds\": \"\",\n  \"insightsAccess__teamLeadIds\": \"\",\n  \"viewEngageAnalyticsActivity\": false,\n  \"callsAccess__permissionLevel\": \"\",\n  \"dealsAccess__permissionLevel\": \"\",\n  \"engageManageCompanySequences\": false,\n  \"engageManageCompanyTemplates\": false,\n  \"usageAccess__permissionLevel\": \"\",\n  \"emailsAccess__permissionLevel\": \"\",\n  \"engageCreateAndManageRulesets\": false,\n  \"manageGeneralBusinessSettings\": false,\n  \"createEditAndDeleteDealsBoards\": false,\n  \"engageSnoozeFlowToDosForOthers\": false,\n  \"manuallyScheduleAndUploadCalls\": false,\n  \"viewEngageAnalyticsPerformance\": false,\n  \"coachingAccess__permissionLevel\": \"\",\n  \"exportCallsAndCoachingDataToCSV\": false,\n  \"insightsAccess__permissionLevel\": \"\",\n  \"libraryFolderAccess__manageStreams\": false,\n  \"libraryFolderAccess__permissionLevel\": \"\",\n  \"libraryFolderAccess__libraryFolderIds\": \"\",\n  \"libraryFolderAccess__manageFolderCalls\": false,\n  \"libraryFolderAccess__managePublicFolder\": false,\n  \"libraryFolderAccess__shareFoldersAndStreams\": false,\n  \"forecastPermissions__forecastAccess__teamLeadIds\": \"\",\n  \"forecastPermissions__forecastAccess__permissionLevel\": \"\",\n  \"forecastPermissions__forecastEditTargets__teamLeadIds\": \"\",\n  \"forecastPermissions__forecastEditSubmissions__teamLeadIds\": \"\",\n  \"forecastPermissions__forecastEditTargets__permissionLevel\": \"\",\n  \"forecastPermissions__forecastEditSubmissions__permissionLevel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_data_privacy_for_phone_number",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/data/privacy/for/phone/number",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "data",
            "privacy",
            "for",
            "phone",
            "number"
          ]
        },
        "description": "Shows the elements in the gong system that reference the given phone number. given a phone number, this endpoint returns details of any leads or contacts with this phone number and their associated ca",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"phoneNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_delete_a_generic_crm_integration_v2_crm_integrations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/generic/crm/integration/v2/crm/integrations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "generic",
            "crm",
            "integration",
            "v2",
            "crm",
            "integrations"
          ]
        },
        "description": "Deletes an existing crm integration from the gong platform. this endpoint should be used when you want to disconnect or remove a previously established integration between gong and a crm system, such ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integrationId\": 0,\n  \"clientRequestId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_delete_a_gong_meeting_v2_meetings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/a/gong/meeting/v2/meetings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "a",
            "gong",
            "meeting",
            "v2",
            "meetings"
          ]
        },
        "description": "When accessed through a bearer token authorization method, this endpoint requires the scope 'api:meetings:user:delete'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meetingId\": 0,\n  \"organizerEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_delete_users_from_call_access_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/users/from/call/access/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "users",
            "from",
            "call",
            "access",
            "list"
          ]
        },
        "description": "Remove individual user access from calls. the request can only remove access previously given by the /v2/calls/users-access api. if a given user does not have access to the call, they will be unaffect",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"callAccessList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_erase_data_for_email_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/erase/data/for/email/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "erase",
            "data",
            "for",
            "email",
            "address"
          ]
        },
        "description": "Given an email address, this endpoint deletes from the gong system any calls or email messages that reference this address. email messages sent to or from the address are deleted. calls where the emai",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emailAddress\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_erase_data_for_phone_number",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/erase/data/for/phone/number",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "erase",
            "data",
            "for",
            "phone",
            "number"
          ]
        },
        "description": "Given a phone number, this endpoint deletes from the gong system any leads or contacts with a matching phone number or mobile phone number. email messages sent to or from these leads/contacts are dele",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"phoneNumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_fetch_all_permission_profiles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/all/permission/profiles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "all",
            "permission",
            "profiles"
          ]
        },
        "description": "Returns a list of all permission profiles. the listing is in the alphabetical order of the profile names.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_get_crm_integration_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/crm/integration/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "crm",
            "integration",
            "details"
          ]
        },
        "description": "<style>.public-api-info { background: rgb(222, 235, 255);}.public-api-tip { background: rgb(227, 252, 239);}.public-api-parameter { background: rgba(9,30,66,0.08);}.public-api-note { background: rgb(2",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_get_crm_objects_v2_crm_entities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/crm/objects/v2/crm/entities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "crm",
            "objects",
            "v2",
            "crm",
            "entities"
          ]
        },
        "description": "Retrieves crm entities from the gong platform. this endpoint allows users to fetch various crm objects such as accounts, deals, and contacts that have been integrated with gong's revenue intelligence ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"objectType\": \"\",\n  \"integrationId\": 0,\n  \"objectsCrmIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_get_permission_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/permission/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "permission",
            "profile"
          ]
        },
        "description": "Returns a permission profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profileId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_get_request_status_v2_crm_request_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/request/status/v2/crm/request/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "request",
            "status",
            "v2",
            "crm",
            "request",
            "status"
          ]
        },
        "description": "The getcrmrequeststatus endpoint retrieves the current status of crm integration requests in the gong platform. it allows users to check the progress and outcome of operations related to crm data uplo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integrationId\": 0,\n  \"clientRequestId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_all_coaching_metrics_v2_coaching",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/coaching/metrics/v2/coaching",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "coaching",
            "metrics",
            "v2",
            "coaching"
          ]
        },
        "description": "List all of the coaching metrics of a manager. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:coaching:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to\": \"\",\n  \"from\": \"\",\n  \"manager__id\": 0,\n  \"workspace__id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_all_company_workspaces_v2_workspaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/company/workspaces/v2/workspaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "company",
            "workspaces",
            "v2",
            "workspaces"
          ]
        },
        "description": "Returns a list of all workspaces including their details. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:workspaces:read'.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_all_users_v2_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/users/v2/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "users",
            "v2",
            "users"
          ]
        },
        "description": "List all of the company's users. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:users:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"includeAvatars\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_flows_for_crm_prospects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/flows/for/crm/prospects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "flows",
            "for",
            "crm",
            "prospects"
          ]
        },
        "description": "Get the gong engage flows assigned to the given prospects. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:flows:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"crmProspectsIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_folder_calls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folder/calls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folder",
            "calls"
          ]
        },
        "description": "Given a folder id, this endpoint retrieves a list of calls in it. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:library:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folderId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_gong_engage_flows_v2_flows",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gong/engage/flows/v2/flows",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gong",
            "engage",
            "flows",
            "v2",
            "flows"
          ]
        },
        "description": "Engage flows have the following visibility types: * company: visible to everyone in the company, can only be edited by users with edit permissions. * personal: reps can set up their own flows which ar",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"workspaceId\": \"\",\n  \"flowOwnerEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_schema_fields_v2_crm_entity_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/schema/fields/v2/crm/entity/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "schema",
            "fields",
            "v2",
            "crm",
            "entity",
            "schema"
          ]
        },
        "description": "Retrieves the comprehensive schema of crm entities in the gong platform. this endpoint provides detailed metadata about the structure, attributes, and relationships of entities within the customer rel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"objectType\": \"\",\n  \"integrationId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_list_users_by_filter_v2_users_extensive",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users/by/filter/v2/users/extensive",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users",
            "by",
            "filter",
            "v2",
            "users",
            "extensive"
          ]
        },
        "description": "List multiple users. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:users:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__userIds\": \"\",\n  \"filter__includeAvatars\": false,\n  \"filter__createdToDateTime\": \"\",\n  \"filter__createdFromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_manage_user_call_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/user/call/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "user",
            "call",
            "access"
          ]
        },
        "description": "Returns a list of users who have received individual access to calls through the api. this endpoint doesn't cover user that have access for other reasons (such as sharing recipients, or access through",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter__callIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_post_a_digital_interaction_v2_digital_interaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/a/digital/interaction/v2/digital/interaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "a",
            "digital",
            "interaction",
            "v2",
            "digital",
            "interaction"
          ]
        },
        "description": "When accessed through a bearer token authorization method, this endpoint requires the scope 'api:digital-interactions:write'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"device\": \"\",\n  \"eventId\": \"\",\n  \"eventType\": \"\",\n  \"sessionId\": \"\",\n  \"timestamp\": \"\",\n  \"trackingId\": \"\",\n  \"customFields\": \"\",\n  \"person__name\": \"\",\n  \"person__email\": \"\",\n  \"person__personId\": \"\",\n  \"sourceSystemName\": \"\",\n  \"content__contentId\": \"\",\n  \"content__contentUrl\": \"\",\n  \"person__phoneNumber\": \"\",\n  \"content__contentLabel\": \"\",\n  \"content__contentTitle\": \"\",\n  \"person__company__name\": \"\",\n  \"person__location__city\": \"\",\n  \"person__company__domain\": \"\",\n  \"person__location__state\": \"\",\n  \"person__location__region\": \"\",\n  \"person__location__country\": \"\",\n  \"person__company__companyId\": \"\",\n  \"person__personCustomFields\": \"\",\n  \"content__contentCustomFields\": \"\",\n  \"content__contentAdditionalInfoUrl\": \"\",\n  \"content__searchObjectDetails__url\": \"\",\n  \"content__searchObjectDetails__name\": \"\",\n  \"content__stepContentDetails__value\": \"\",\n  \"content__searchObjectDetails__domain\": \"\",\n  \"content__numericContentDetails__value\": 0,\n  \"content__searchObjectDetails__objectId\": \"\",\n  \"content__numericContentDetails__rangeTo\": 0,\n  \"person__personBusinessContext__objectId\": \"\",\n  \"content__searchObjectDetails__objectType\": \"\",\n  \"person__company__companyBusinessContexts\": \"\",\n  \"content__numericContentDetails__rangeFrom\": 0,\n  \"person__personBusinessContext__objectType\": \"\",\n  \"person__personBusinessContext__systemName\": \"\",\n  \"content__numericContentDetails__numericType\": \"\",\n  \"content__stepContentDetails__availableSteps\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_post_day_by_day_activity_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/day/by/day/activity/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "day",
            "by",
            "day",
            "activity",
            "stats"
          ]
        },
        "description": "Retrieve the daily activity of multiple users within the gong system for a range of dates. this endpoint returns records including statistics about each user's activity, on the daily level. records ar",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__toDate\": \"\",\n  \"filter__userIds\": \"\",\n  \"filter__fromDate\": \"\",\n  \"filter__createdToDateTime\": \"\",\n  \"filter__createdFromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_post_interaction_filter_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/interaction/filter/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "interaction",
            "filter",
            "stats"
          ]
        },
        "description": "Returns interaction stats for users based on calls that have whisper turned on. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:stats:interaction'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__toDate\": \"\",\n  \"filter__userIds\": \"\",\n  \"filter__fromDate\": \"\",\n  \"filter__createdToDateTime\": \"\",\n  \"filter__createdFromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_post_meeting_integration_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/meeting/integration/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "meeting",
            "integration",
            "status"
          ]
        },
        "description": "When accessed through a bearer token authorization method, this endpoint requires the scope 'api:meetings:integration:status'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_register_crm_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/register/crm/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "register",
            "crm",
            "integration"
          ]
        },
        "description": "Updates an existing crm integration in the gong platform. this endpoint allows you to modify the details of a previously set up integration between gong and your customer relationship management (crm)",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"ownerEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_report_content_viewed_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/content/viewed/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "content",
            "viewed",
            "event"
          ]
        },
        "description": "Push engagement events into gong and display them as events in gong’s activity timeline, when a content is viewed by an external participant (for example, a contract was “viewed” by the prospect) when",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventId\": \"\",\n  \"shareId\": \"\",\n  \"contentId\": \"\",\n  \"userAgent\": \"\",\n  \"actionName\": \"\",\n  \"contentUrl\": \"\",\n  \"crmContext\": \"\",\n  \"sharer__id\": \"\",\n  \"trackingId\": \"\",\n  \"mobileAppId\": \"\",\n  \"moreInfoUrl\": \"\",\n  \"viewInfoUrl\": \"\",\n  \"workspaceId\": \"\",\n  \"contentTitle\": \"\",\n  \"sharer__name\": \"\",\n  \"viewer__name\": \"\",\n  \"agentPlatform\": \"\",\n  \"sharer__email\": \"\",\n  \"viewer__email\": \"\",\n  \"viewer__title\": \"\",\n  \"eventTimestamp\": \"\",\n  \"eventProperties\": \"\",\n  \"reportingSystem\": \"\",\n  \"viewActionTitle\": \"\",\n  \"viewer__context\": \"\",\n  \"contentProperties\": \"\",\n  \"sharingMessageBody\": \"\",\n  \"sharingMessageSubject\": \"\",\n  \"nonCompanyParticipants\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_report_custom_engagement_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/report/custom/engagement/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "report",
            "custom",
            "engagement",
            "event"
          ]
        },
        "description": "Push engagement events into gong and display them as events in gong’s activity timeline, when a content is engaged by an external participant (for example, a contract was “signed” by the prospect) whe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventId\": \"\",\n  \"shareId\": \"\",\n  \"contentId\": \"\",\n  \"userAgent\": \"\",\n  \"actionName\": \"\",\n  \"contentUrl\": \"\",\n  \"crmContext\": \"\",\n  \"sharer__id\": \"\",\n  \"trackingId\": \"\",\n  \"actor__name\": \"\",\n  \"mobileAppId\": \"\",\n  \"moreInfoUrl\": \"\",\n  \"workspaceId\": \"\",\n  \"actor__email\": \"\",\n  \"actor__title\": \"\",\n  \"contentTitle\": \"\",\n  \"eventInfoUrl\": \"\",\n  \"sharer__name\": \"\",\n  \"agentPlatform\": \"\",\n  \"sharer__email\": \"\",\n  \"actor__context\": \"\",\n  \"eventTimestamp\": \"\",\n  \"eventProperties\": \"\",\n  \"reportingSystem\": \"\",\n  \"contentProperties\": \"\",\n  \"sharingMessageBody\": \"\",\n  \"sharingMessageSubject\": \"\",\n  \"nonCompanyParticipants\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_call_data_by_date_range_v2_calls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/call/data/by/date/range/v2/calls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "call",
            "data",
            "by",
            "date",
            "range",
            "v2",
            "calls"
          ]
        },
        "description": "List calls that took place during a specified date range. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:calls:read:basic'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"toDateTime\": \"\",\n  \"workspaceId\": \"\",\n  \"fromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_data_for_a_specific_call_v2_calls_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/data/for/a/specific/call/v2/calls/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "data",
            "for",
            "a",
            "specific",
            "call",
            "v2",
            "calls",
            "id"
          ]
        },
        "description": "Retrieve data for a specific call. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:calls:read:basic'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_data_privacy_info_for_email_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/data/privacy/info/for/email/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "data",
            "privacy",
            "info",
            "for",
            "email",
            "address"
          ]
        },
        "description": "Shows the elements in the gong system that reference the given email address. given an emails address, this endpoint returns details of all calls and email messages that reference this address, and an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emailAddress\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_filtered_call_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/filtered/call/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "filtered",
            "call",
            "details"
          ]
        },
        "description": "Lists detailed call data for calls that took place during a specified date range, have specified call ids or hosted by specified users. when accessed through a bearer token authorization method, this ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__callIds\": \"\",\n  \"filter__toDateTime\": \"\",\n  \"filter__workspaceId\": \"\",\n  \"filter__fromDateTime\": \"\",\n  \"filter__primaryUserIds\": \"\",\n  \"contentSelector__context\": \"\",\n  \"contentSelector__contextTiming\": \"\",\n  \"contentSelector__exposedFields__media\": false,\n  \"contentSelector__exposedFields__parties\": false,\n  \"contentSelector__exposedFields__content__brief\": false,\n  \"contentSelector__exposedFields__content__topics\": false,\n  \"contentSelector__exposedFields__content__outline\": false,\n  \"contentSelector__exposedFields__content__trackers\": false,\n  \"contentSelector__exposedFields__content__keyPoints\": false,\n  \"contentSelector__exposedFields__content__structure\": false,\n  \"contentSelector__exposedFields__interaction__video\": false,\n  \"contentSelector__exposedFields__content__highlights\": false,\n  \"contentSelector__exposedFields__content__callOutcome\": false,\n  \"contentSelector__exposedFields__interaction__speakers\": false,\n  \"contentSelector__exposedFields__interaction__questions\": false,\n  \"contentSelector__exposedFields__content__pointsOfInterest\": false,\n  \"contentSelector__exposedFields__content__trackerOccurrences\": false,\n  \"contentSelector__exposedFields__collaboration__publicComments\": false,\n  \"contentSelector__exposedFields__interaction__personInteractionStats\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_library_folders_v2_library_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/library/folders/v2/library/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "library",
            "folders",
            "v2",
            "library",
            "folders"
          ]
        },
        "description": "Use this endpoint to retrieve a list of public library folders. we do not allow retrieval of either private or archived folders. when accessed through a bearer token authorization method, this endpoin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_logs_data_by_type_and_time_range_v2_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/logs/data/by/type/and/time/range/v2/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "logs",
            "data",
            "by",
            "type",
            "and",
            "time",
            "range",
            "v2",
            "logs"
          ]
        },
        "description": "List log entries that took place during a specified time range. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:logs:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"logType\": \"\",\n  \"toDateTime\": \"\",\n  \"fromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_manual_crm_call_associations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/manual/crm/call/associations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "manual",
            "crm",
            "call",
            "associations"
          ]
        },
        "description": "Returns a list of all calls that were manually associated or re-associated with crm account and deal/opportunity since a given time. actions will be listed in the ascending order of their timing. noti",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"fromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_scorecards_details_v2_settings_scorecards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/scorecards/details/v2/settings/scorecards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "scorecards",
            "details",
            "v2",
            "settings",
            "scorecards"
          ]
        },
        "description": "Retrieve all the scorecards within the gong system. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:settings:scorecards:read'.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_tracker_details_v2_settings_trackers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/tracker/details/v2/settings/trackers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "tracker",
            "details",
            "v2",
            "settings",
            "trackers"
          ]
        },
        "description": "Retrieves details of all keyword trackers in the system or in a given workspace. when accessed through a bearer token authorization method, this endpoint requires the 'api:settings:trackers:read' scop",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_transcripts_of_calls_v2_calls_transcript",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/transcripts/of/calls/v2/calls/transcript",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "transcripts",
            "of",
            "calls",
            "v2",
            "calls",
            "transcript"
          ]
        },
        "description": "Returns transcripts for calls that took place during the specified date period. if call ids are specified, only transcripts for calls with those ids that took place during the time period are returned",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"filter__callIds\": \"\",\n  \"filter__toDateTime\": \"\",\n  \"filter__workspaceId\": \"\",\n  \"filter__fromDateTime\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_user_settings_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/user/settings/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "user",
            "settings",
            "history"
          ]
        },
        "description": "Retrieve a specific user's settings history. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:users:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_user_v2_users_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/user/v2/users/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "user",
            "v2",
            "users",
            "id"
          ]
        },
        "description": "Retrieve a specific user. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:users:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_retrieve_users_from_permission_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/users/from/permission/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "users",
            "from",
            "permission",
            "profile"
          ]
        },
        "description": "Returns a list of all users whose access is controlled by the given permission profile. when accessed through a bearer token authorization method, this endpoint requires the scope 'api:users:read'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profileId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_set_user_call_access",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/user/call/access",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "user",
            "call",
            "access"
          ]
        },
        "description": "Give individual users access to calls. if a user already has access (perhaps the call was shared with them, or they have access through their permission profiles) the request will have no effect. when",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"callAccessList\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_update_a_gong_meeting_v2_meetings_meeting_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/gong/meeting/v2/meetings/meeting/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "gong",
            "meeting",
            "v2",
            "meetings",
            "meeting",
            "id"
          ]
        },
        "description": "When accessed through a bearer token authorization method, this endpoint requires the scope 'api:meetings:user:update'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"endTime\": \"\",\n  \"invitees\": \"\",\n  \"meetingId\": 0,\n  \"startTime\": \"\",\n  \"externalId\": \"\",\n  \"organizerEmail\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_update_permission_profile_v2_permission_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/permission/profile/v2/permission/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "permission",
            "profile",
            "v2",
            "permission",
            "profile"
          ]
        },
        "description": "Update a permission profile.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"deals\": false,\n  \"usage\": false,\n  \"market\": false,\n  \"account\": false,\n  \"library\": false,\n  \"activity\": false,\n  \"coaching\": false,\n  \"forecast\": false,\n  \"profileId\": \"\",\n  \"teamStats\": false,\n  \"trimCalls\": false,\n  \"scoreCalls\": false,\n  \"deleteCalls\": false,\n  \"description\": \"\",\n  \"initiatives\": false,\n  \"deleteEmails\": false,\n  \"privateCalls\": false,\n  \"crmDataImport\": false,\n  \"listenInCalls\": false,\n  \"overrideScore\": false,\n  \"callsAndSearch\": false,\n  \"forecastManage\": false,\n  \"manageScorecards\": false,\n  \"downloadCallMedia\": false,\n  \"dealsInlineEditing\": false,\n  \"crmDataInlineEditing\": false,\n  \"viewRevenueAnalytics\": false,\n  \"manageRevenueAnalytics\": false,\n  \"shareCallsWithCustomers\": false,\n  \"callsAccess__teamLeadIds\": \"\",\n  \"dealsAccess__teamLeadIds\": \"\",\n  \"usageAccess__teamLeadIds\": \"\",\n  \"viewEngageAnalyticsFlows\": false,\n  \"emailsAccess__teamLeadIds\": \"\",\n  \"coachingAccess__teamLeadIds\": \"\",\n  \"insightsAccess__teamLeadIds\": \"\",\n  \"viewEngageAnalyticsActivity\": false,\n  \"callsAccess__permissionLevel\": \"\",\n  \"dealsAccess__permissionLevel\": \"\",\n  \"engageManageCompanySequences\": false,\n  \"engageManageCompanyTemplates\": false,\n  \"usageAccess__permissionLevel\": \"\",\n  \"emailsAccess__permissionLevel\": \"\",\n  \"engageCreateAndManageRulesets\": false,\n  \"manageGeneralBusinessSettings\": false,\n  \"createEditAndDeleteDealsBoards\": false,\n  \"engageSnoozeFlowToDosForOthers\": false,\n  \"manuallyScheduleAndUploadCalls\": false,\n  \"viewEngageAnalyticsPerformance\": false,\n  \"coachingAccess__permissionLevel\": \"\",\n  \"exportCallsAndCoachingDataToCSV\": false,\n  \"insightsAccess__permissionLevel\": \"\",\n  \"libraryFolderAccess__manageStreams\": false,\n  \"libraryFolderAccess__permissionLevel\": \"\",\n  \"libraryFolderAccess__libraryFolderIds\": \"\",\n  \"libraryFolderAccess__manageFolderCalls\": false,\n  \"libraryFolderAccess__managePublicFolder\": false,\n  \"libraryFolderAccess__shareFoldersAndStreams\": false,\n  \"forecastPermissions__forecastAccess__teamLeadIds\": \"\",\n  \"forecastPermissions__forecastAccess__permissionLevel\": \"\",\n  \"forecastPermissions__forecastEditTargets__teamLeadIds\": \"\",\n  \"forecastPermissions__forecastEditSubmissions__teamLeadIds\": \"\",\n  \"forecastPermissions__forecastEditTargets__permissionLevel\": \"\",\n  \"forecastPermissions__forecastEditSubmissions__permissionLevel\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_update_shared_content_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/shared/content/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "shared",
            "content",
            "event"
          ]
        },
        "description": "Push engagement events into gong and display them as events in gong’s activity timeline, when a gong user shares content with external participants (for example, a contract was “shared” by the account",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventId\": \"\",\n  \"shareId\": \"\",\n  \"contentId\": \"\",\n  \"userAgent\": \"\",\n  \"actionName\": \"\",\n  \"contentUrl\": \"\",\n  \"crmContext\": \"\",\n  \"recipients\": \"\",\n  \"sharer__id\": \"\",\n  \"trackingId\": \"\",\n  \"mobileAppId\": \"\",\n  \"moreInfoUrl\": \"\",\n  \"workspaceId\": \"\",\n  \"contentTitle\": \"\",\n  \"shareInfoUrl\": \"\",\n  \"sharer__name\": \"\",\n  \"agentPlatform\": \"\",\n  \"sharer__email\": \"\",\n  \"eventTimestamp\": \"\",\n  \"eventProperties\": \"\",\n  \"reportingSystem\": \"\",\n  \"contentProperties\": \"\",\n  \"sharingMessageBody\": \"\",\n  \"sharingMessageSubject\": \"\",\n  \"nonCompanyParticipants\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gong_upload_crm_objects_v2_crm_entities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/crm/objects/v2/crm/entities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "crm",
            "objects",
            "v2",
            "crm",
            "entities"
          ]
        },
        "description": "Uploads crm data files to the gong platform for integration and analysis. this endpoint allows users to send large crm data files (up to 200mb) using a multipart/form-data request. it should be used w",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dataFile\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}