Delete a tag group
Log in to add to favouritesDelete 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
Delete an unused tag group by its id
await client.tags.groups.delete("topics");