Common Room · Schema

ProspectorContactList

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
success boolean
data array
meta object
View JSON Schema on GitHub

JSON Schema

common-room-v2-prospectorcontactlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/v2/prospectorcontactlist",
  "title": "ProspectorContactList",
  "type": "object",
  "required": [
    "success",
    "data",
    "meta"
  ],
  "properties": {
    "success": {
      "type": "boolean",
      "enum": [
        true
      ]
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApiProspectorContact"
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "nextCursor": {
          "type": "string",
          "nullable": true,
          "description": "Cursor for pagination; pass as the `cursor` query parameter to fetch the next page."
        },
        "recordCount": {
          "type": "integer",
          "description": "Total number of records matching the query. Only returned when `cols=recordCount` is requested."
        }
      }
    }
  }
}