Gong · Schema

AssignProspectsRequest

SalesRevenue IntelligenceConversationAnalyticsAI

Properties

Name Type Description
flowId string The ID of the Engage flow to assign prospects to.
prospects array List of prospects to assign.
senderEmail string The email address to send flow messages from.
View JSON Schema on GitHub

JSON Schema

gong-assignprospectsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssignProspectsRequest",
  "title": "AssignProspectsRequest",
  "type": "object",
  "required": [
    "flowId",
    "prospects"
  ],
  "properties": {
    "flowId": {
      "type": "string",
      "description": "The ID of the Engage flow to assign prospects to."
    },
    "prospects": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Prospect"
      },
      "description": "List of prospects to assign."
    },
    "senderEmail": {
      "type": "string",
      "format": "email",
      "description": "The email address to send flow messages from."
    }
  }
}