Delete a tag group
Log in to add to favouritesPage last updated 02 July 2025
Delete an existing tag group by its id
Call signature
delete(id: string): Promise<void>;Parameters
| Name | Type | Description |
|---|---|---|
| id | string | The API id of the tag group to delete |
Returns
A Promise that will resolve with no data
Remarks
A tag group cannot be deleted if it contains any tags
Throws any error that is returned by the API for any unsuccessful request echoing the HTTP status returned from the API
Example
await client.tags.groups.delete("topics");