Common Room · Schema

ApiTagAssignmentByName

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
type string
name string Name of the tag to assign. This will assign an existing label if a matching one is found by name, otherwise a new label will be created and assigned.
View JSON Schema on GitHub

JSON Schema

common-room-core-apitagassignmentbyname-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/core/apitagassignmentbyname",
  "title": "ApiTagAssignmentByName",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "name"
      ]
    },
    "name": {
      "description": "Name of the tag to assign.\n\nThis will assign an existing label if a matching one is found by name, otherwise a new label will be created and assigned.\n",
      "type": "string"
    }
  },
  "required": [
    "type",
    "name"
  ]
}