# Remove tag from meetings (/docs/api/tags/remove-tag-from-meetings)

## OpenAPI

```json
{
  "info": {
    "description": "The Circleback public REST API provides programmatic access to your meetings, notes, action items, transcripts, and more. Authenticate every request by sending your API key as a bearer token.",
    "title": "Circleback Public API",
    "version": "1.0.0"
  },
  "openapi": "3.2.0",
  "servers": [
    {
      "url": "https://circleback.ai/api"
    }
  ],
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "bearerFormat": "cb_<secret>",
        "scheme": "bearer",
        "type": "http"
      }
    }
  },
  "tags": [
    {
      "description": "Organize meetings with tags and manage tag assignments.",
      "name": "Tags"
    }
  ],
  "paths": {
    "/tag": {
      "delete": {
        "description": "Removes a tag from one or more meetings and returns the updated meetings.",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "properties": {
                  "tagId": {
                    "description": "The ID of the tag.",
                    "exclusiveMinimum": 0,
                    "type": "integer"
                  },
                  "meetingIds": {
                    "description": "The IDs of the meetings to update.",
                    "items": {
                      "description": "The unique identifier of the meeting.",
                      "type": "string"
                    },
                    "type": "array"
                  }
                },
                "required": [
                  "tagId"
                ],
                "type": "object"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "additionalProperties": false,
                    "example": {
                      "id": "WRweb12iCBimU6Vo8cD7z",
                      "name": "Event Venue Review",
                      "createdAt": "2023-07-25T20:30:57.926Z",
                      "updatedAt": "2023-07-25T20:30:57.926Z",
                      "duration": 1306.09,
                      "url": "https://meet.google.com/abc-defgh-xyz",
                      "recordingUrl": "https://storage.googleapis.com/circleback-recordings/WRweb12iCBimU6Vo8cD7z.mp4",
                      "tags": [
                        {
                          "id": 1,
                          "name": "Events",
                          "description": "Company events and offsites."
                        }
                      ],
                      "icalUid": "event-venue-review@google.com",
                      "attendees": [
                        {
                          "profileId": 1,
                          "name": "John Appleseed",
                          "title": "Head of Operations",
                          "companyName": "Initech",
                          "email": "john@initech.com",
                          "isCalendarEventOrganizer": true,
                          "isCalendarInvitee": true
                        },
                        {
                          "profileId": 2,
                          "name": "Samantha Grey",
                          "title": "Office Manager",
                          "companyName": "Initech",
                          "email": "samantha@initech.com",
                          "isCalendarEventOrganizer": false,
                          "isCalendarInvitee": true
                        }
                      ],
                      "notes": "#### Overview\n* Several options for event venues were reviewed…",
                      "privateNotes": "Ask Samantha about the Sunriver deposit before Friday.",
                      "actionItems": [
                        {
                          "id": 252,
                          "title": "Contact event venues",
                          "description": "Reach out to Sunriver Events and other potential event venues to see if they would be open to hosting the event this summer.",
                          "assignee": {
                            "profileId": 1,
                            "name": "John Appleseed",
                            "title": "Head of Operations",
                            "companyName": "Initech",
                            "email": "john@initech.com"
                          },
                          "status": "PENDING"
                        },
                        {
                          "id": 253,
                          "title": "Review and finalize venue options",
                          "description": "Review pricing and availability of venues and pick a venue for the event.",
                          "assignee": null,
                          "status": "PENDING"
                        }
                      ],
                      "insights": {
                        "Customer details": [
                          {
                            "speaker": "John Appleseed",
                            "timestamp": 800,
                            "insight": {
                              "Company name": "Initech",
                              "Number of employees": 120
                            }
                          }
                        ],
                        "Questions": [
                          {
                            "insight": "Is this thing on?",
                            "speaker": "Samantha Grey",
                            "timestamp": 49.15
                          },
                          {
                            "insight": "When will the webhook integration be ready?",
                            "speaker": "John Appleseed",
                            "timestamp": 120.12
                          }
                        ]
                      },
                      "linkAccess": "Viewer",
                      "calendarEvent": {
                        "id": 91,
                        "icalUid": "event-venue-review@google.com",
                        "description": "Quarterly venue review",
                        "platform": "GoogleCalendar",
                        "platformId": "provider-event-id"
                      }
                    },
                    "properties": {
                      "id": {
                        "description": "Circleback meeting ID. Can be used to generate a link to the meeting (`https://circleback.ai/meetings/${id}`).",
                        "type": "string"
                      },
                      "name": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "Meeting name."
                      },
                      "createdAt": {
                        "description": "Meeting creation date, formatted as an ISO 8601 timestamp.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "updatedAt": {
                        "description": "When the meeting was last updated.",
                        "format": "date-time",
                        "type": "string"
                      },
                      "duration": {
                        "anyOf": [
                          {
                            "type": "number"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "Meeting duration in seconds."
                      },
                      "url": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "URL of the virtual meeting (Zoom, Google Meet, or Microsoft Teams)."
                      },
                      "recordingUrl": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "URL of the meeting recording file. Only valid for 24 hours, and only available if saving meeting recordings is enabled in settings."
                      },
                      "tags": {
                        "description": "Tags added to the meeting.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "The unique identifier of the tag.",
                              "exclusiveMinimum": 0,
                              "type": "number"
                            },
                            "name": {
                              "description": "The display name of the tag.",
                              "type": "string"
                            },
                            "description": {
                              "anyOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "description": "A description of the tag."
                            }
                          },
                          "required": [
                            "id",
                            "name",
                            "description"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "icalUid": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "Unique identifier of the calendar event associated with the meeting."
                      },
                      "attendees": {
                        "description": "Meeting attendees.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "profileId": {
                              "description": "The unique identifier of the person's profile.",
                              "exclusiveMinimum": 0,
                              "type": "number"
                            },
                            "name": {
                              "anyOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "description": "Calendar event invitee name if associated with a calendar event, or the name of the meeting participant."
                            },
                            "title": {
                              "anyOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "description": "The person's job title."
                            },
                            "companyName": {
                              "anyOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "description": "The name of the company the person belongs to."
                            },
                            "email": {
                              "anyOf": [
                                {
                                  "type": "string"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "description": "Calendar event invitee email if associated with a calendar event."
                            },
                            "isCalendarEventOrganizer": {
                              "description": "Whether the attendee organized the calendar event.",
                              "type": "boolean"
                            },
                            "isCalendarInvitee": {
                              "description": "Whether the attendee was invited on the calendar event.",
                              "type": "boolean"
                            }
                          },
                          "required": [
                            "profileId",
                            "name",
                            "email",
                            "title",
                            "companyName",
                            "isCalendarInvitee",
                            "isCalendarEventOrganizer"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "notes": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "Circleback meeting notes with Markdown formatting."
                      },
                      "privateNotes": {
                        "description": "The authenticated user's private notes for the meeting.",
                        "type": "string"
                      },
                      "actionItems": {
                        "description": "Action items created for the meeting.",
                        "items": {
                          "additionalProperties": false,
                          "properties": {
                            "id": {
                              "description": "Circleback action item ID.",
                              "exclusiveMinimum": 0,
                              "type": "number"
                            },
                            "title": {
                              "description": "Action item title.",
                              "type": "string"
                            },
                            "description": {
                              "description": "Action item description.",
                              "type": "string"
                            },
                            "assignee": {
                              "description": "Action item assignee, or null if unassigned.",
                              "anyOf": [
                                {
                                  "additionalProperties": false,
                                  "properties": {
                                    "profileId": {
                                      "description": "The unique identifier of the person's profile.",
                                      "exclusiveMinimum": 0,
                                      "type": "number"
                                    },
                                    "name": {
                                      "anyOf": [
                                        {
                                          "type": "string"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "description": "The person's full name."
                                    },
                                    "title": {
                                      "anyOf": [
                                        {
                                          "type": "string"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "description": "The person's job title."
                                    },
                                    "companyName": {
                                      "anyOf": [
                                        {
                                          "type": "string"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "description": "The name of the company the person belongs to."
                                    },
                                    "email": {
                                      "anyOf": [
                                        {
                                          "type": "string"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ],
                                      "description": "The person's email address."
                                    }
                                  },
                                  "required": [
                                    "profileId",
                                    "name",
                                    "email",
                                    "title",
                                    "companyName"
                                  ],
                                  "type": "object"
                                },
                                {
                                  "type": "null"
                                }
                              ],
                              "example": {
                                "profileId": 1,
                                "name": "John Appleseed",
                                "title": "Head of Operations",
                                "companyName": "Initech",
                                "email": "john@initech.com"
                              }
                            },
                            "status": {
                              "description": "Action item status, one of 'PENDING' or 'DONE'.",
                              "enum": [
                                "PENDING",
                                "DONE"
                              ],
                              "type": "string"
                            }
                          },
                          "required": [
                            "id",
                            "title",
                            "description",
                            "status",
                            "assignee"
                          ],
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "insights": {
                        "additionalProperties": {
                          "items": {
                            "additionalProperties": false,
                            "properties": {
                              "speaker": {
                                "anyOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "description": "Speaker the insight is associated with, if any."
                              },
                              "timestamp": {
                                "anyOf": [
                                  {
                                    "type": "number"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "description": "Timestamp in seconds the insight is associated with, if any."
                              },
                              "insight": {
                                "anyOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "additionalProperties": {
                                      "anyOf": [
                                        {
                                          "type": "string"
                                        },
                                        {
                                          "type": "number"
                                        },
                                        {
                                          "type": "boolean"
                                        },
                                        {
                                          "type": "null"
                                        }
                                      ]
                                    },
                                    "propertyNames": {
                                      "type": "string"
                                    },
                                    "type": "object"
                                  }
                                ],
                                "description": "The insight result. A string, or an object when the insight has custom fields."
                              }
                            },
                            "required": [
                              "speaker",
                              "timestamp",
                              "insight"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "description": "Insight results for the meeting, keyed by the name of the user-created insight.",
                        "propertyNames": {
                          "type": "string"
                        },
                        "type": "object"
                      },
                      "linkAccess": {
                        "anyOf": [
                          {
                            "enum": [
                              "Editor",
                              "Viewer",
                              "LimitedViewer"
                            ],
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "description": "Who can access the meeting through its shareable link."
                      },
                      "calendarEvent": {
                        "anyOf": [
                          {
                            "additionalProperties": false,
                            "properties": {
                              "id": {
                                "description": "The unique identifier of the calendar event.",
                                "exclusiveMinimum": 0,
                                "type": "number"
                              },
                              "icalUid": {
                                "anyOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "description": "The iCalendar unique identifier of the event."
                              },
                              "description": {
                                "description": "The description of the calendar event.",
                                "type": "string"
                              },
                              "platform": {
                                "anyOf": [
                                  {
                                    "enum": [
                                      "GoogleCalendar",
                                      "MicrosoftOutlook"
                                    ],
                                    "type": "string"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "description": "The calendar platform the event comes from."
                              },
                              "platformId": {
                                "anyOf": [
                                  {
                                    "type": "string"
                                  },
                                  {
                                    "type": "null"
                                  }
                                ],
                                "description": "The unique identifier of the event on the calendar platform."
                              }
                            },
                            "required": [
                              "id",
                              "platform",
                              "platformId",
                              "description",
                              "icalUid"
                            ],
                            "type": "object"
                          },
                          {
                            "type": "null"
                          }
                        ]
                      }
                    },
                    "required": [
                      "id",
                      "linkAccess",
                      "url",
                      "createdAt",
                      "updatedAt",
                      "duration",
                      "name",
                      "notes",
                      "icalUid",
                      "recordingUrl",
                      "tags",
                      "attendees",
                      "actionItems",
                      "insights",
                      "calendarEvent",
                      "privateNotes"
                    ],
                    "type": "object"
                  },
                  "type": "array"
                }
              }
            },
            "description": "Successful response."
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": false,
                  "properties": {
                    "code": {
                      "description": "A machine-readable code identifying the type of failure.",
                      "type": "string"
                    },
                    "error": {
                      "description": "A human-readable message explaining why the request failed.",
                      "type": "string"
                    },
                    "issues": {
                      "description": "The field-level validation issues found in an invalid request.",
                      "items": {
                        "additionalProperties": false,
                        "properties": {
                          "message": {
                            "description": "A human-readable explanation of the validation failure.",
                            "type": "string"
                          },
                          "path": {
                            "description": "The location of the request field that failed validation.",
                            "type": "string"
                          }
                        },
                        "required": [
                          "path",
                          "message"
                        ],
                        "type": "object"
                      },
                      "type": "array"
                    }
                  },
                  "required": [
                    "error"
                  ],
                  "type": "object"
                }
              }
            },
            "description": "The request failed validation."
          }
        },
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "summary": "Remove tag from meetings",
        "tags": [
          "Tags"
        ]
      }
    }
  }
}
```