Common Room · Schema

ApiTagAssignmentById

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
type string
id string ID of the tag to assign, taken from the tag API
View JSON Schema on GitHub

JSON Schema

common-room-core-apitagassignmentbyid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/core/apitagassignmentbyid",
  "title": "ApiTagAssignmentById",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "id"
      ]
    },
    "id": {
      "description": "ID of the tag to assign, taken from the tag API",
      "type": "string"
    }
  },
  "required": [
    "type",
    "id"
  ]
}