Appearance
tagfolder/new
Creates a tag folder inside a project.
What is a tag folder?
A tag folder is a grouping container for tags inside a project. It helps keep related tags organized without changing how the tags themselves behave.
Method and path
POST /tagfolder/new
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. |
Content-Type | yes | application/json. |
Request body
| Field | Type | Required | Description |
|---|---|---|---|
project_id | integer | yes | Project identifier. |
label | string | yes | Folder label. |
Example request
bash
curl -X POST "$SIGNAL_API_BASE_URL/tagfolder/new" \
-H "X-Api-Key: $SIGNAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"project_id": 123, "label": "Example Folder"}'json
{
"project_id": 123,
"label": "Example Folder"
}Example response
json
{
"id": 7,
"label": "Example Folder"
}Response fields
| Field | Type | Description |
|---|---|---|
id | integer | Folder identifier. |
label | string | Folder label. |