Appearance
tagfolder/delete
Deletes a tag folder.
Method and path
GET /tagfolder/delete/{project_id}/{folder_id}
Authentication
Authentication is required. See Authentication.
Permissions
Accessible to tier 1, 2, and 3 users.
Request headers
| Header | Required | Description |
|---|---|---|
X-Api-Key or X_API_KEY | yes | API key. |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
project_id | integer | yes | Project identifier. |
folder_id | integer | yes | Folder identifier. |
Example request
bash
curl "$SIGNAL_API_BASE_URL/tagfolder/delete/<project_id>/<folder_id>" \
-H "X-Api-Key: $SIGNAL_API_KEY"Example response
json
{
"deleted": true
}Response fields
| Field | Type | Description |
|---|---|---|
deleted | boolean | Deletion flag. |
Notes
- Before deleting the folder, the endpoint reassigns tags from that folder to the default folder with id
1.